tim
17 years agoContributor
Obtaining XML Schema information regarding a MessagePart
I am using the soapui API to inspect a WSDL and then display information about Request MessageParts for a given Operation.
I would like to find out about the XML Schema for the MessagePart.
For example, in soapUI Pro, in Form view, I can see a pull down for choices: A, B, C in a Request parameter because this parameter (MessagePart) was defined as a simpleType as such:
I would like to provide an interface similar to this in my application.
Will I have to use xmlbeans? Any hints or suggestions would be greatly appreciated.
Is the source available for soapUI Pro (I'm assuming it is not)?.
I would like to find out about the XML Schema for the MessagePart.
For example, in soapUI Pro, in Form view, I can see a pull down for choices: A, B, C in a Request parameter because this parameter (MessagePart) was defined as a simpleType as such:
<simpleType name="elementString">
<restriction base="xsd:string">
<enumeration value="A"/>
<enumeration value="B"/>
<enumeration value="C"/>
</restriction>
</simpleType>
I would like to provide an interface similar to this in my application.
Will I have to use xmlbeans? Any hints or suggestions would be greatly appreciated.
Is the source available for soapUI Pro (I'm assuming it is not)?.