Hi,
I have a wsdl which contains types like:
<complexType name="ComplexType">
<sequence>
<element name="element1" type="myns:TypeO1" minOccurs="1" maxOccurs="1"/>
<element name="element2" type="myns:TypeO2" minOccurs="0"
maxOccurs="unbounded"/>
<element name="element3" type="myns:TypeO3" minOccurs="0"
maxOccurs="unbounded"/>
<element name="element4" type="myns:TypeO4" minOccurs="0"
maxOccurs="unbounded"/>
</sequence>
</complexType>
wscompile doesn't generate anything for elements element2, element3,
element4 likely because of maxOccurs="unbounded"
Unfortunately project environment/wsdls are given, rpc/encoded is given.
(can't change it)
Is there any solution to create a jax-rpc webservice which is capable of
handling wsdl as above?
Thx,
Po