I am doing tests transmitting a big object (bean) which was generated with WSDL2Java. I have a schema with big sequence type.
Then, what I get in the wire is:
[...]
<Body>
    <mymethodname...>
        <myarg>
            <element1>
            <element2>
            <element3>
            ....
        </myarg>
    </mymethodname>
</Body>
[...]
 
But what I want to get is:
<Body>
    <mymethodname...>
       
            <element1>
            <element2>
            <element3>
            ....
       
    </mymethodname>
</Body>
 
without the argument name.
I can not do a operation with many arguments because many of these elements have the attribute MaxOccurs="unbounded" so I don't know how to do it.
 
Thanks.

Reply via email to