users@jax-rpc.java.net

Sequence of elements

From: Post Wire <pdpq14_at_gmail.com>
Date: Thu, 6 Dec 2007 23:40:11 +0100

 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