Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to parse the WSDL. For parsing I am using javax.wsdl package.

One of the method in the WSDL accepts complex parameter. Is there a way/API through which I can get the structure of the complex parameter.

Snippet from my wsdl:

<xsd:element name="PERSONAL_DATA" type="PERSONAL_DATATypeShape"/>
<xsd:complexType name="PERSONAL_DATATypeShape">
<xsd:sequence>
<xsd:element name="EMPLID" type="EMPLIDTypeShape"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="EMPLIDTypeShape">
<xsd:simpleContent>
<xsd:extension base="EMPLIDTypeDef"/>
</xsd:simpleContent>
</xsd:complexType>
<xsd:simpleType name="EMPLIDTypeDef">
<xsd:restriction base="xsd:string">
<xsd:maxLength value="11"/>
<xsd:whiteSpace value="preserve"/>
</xsd:restriction>
</xsd:simpleType>

At the end, I need to construct the SOAPRequest.For that I need the parameter structure. Is there a way /API through which I can get the structure??

Thanks, Maviswa

share|improve this question
Isn't that defined in the associated XSD? – trojanfoe Nov 22 '11 at 17:44

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.