Hello!
I'm trying to parse WSDL documents using WSDL4j. I have problem parsing <xs:any>
elements.
For example for the following WSDL segment I can't find a way to "know" that the node under the second <s:sequence>
is an <s:any/>
node..
<s:element name="FindCountryAsXmlResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="FindCountryAsXmlResult">
<s:complexType mixed="true">
<s:sequence>
<s:any/>
</s:sequence>
</s:complexType>
</s:element>
</s:sequence>
</s:complexType>
</s:element>
I'm new to WSDL and WSDL4j so any help would be appreciated...
thanks!