Hi!
I have in my wsdl complex type composed from two other types:
<complexType name="reqType">
<sequence>
<choice>
<element name="reqType000" type="rqt000:reqType000"/>
<element name="reqType013" type="rqt013:reqType013"/>
</choice>
</sequence>
</complexType>
and now message:
<message name="DirectorWSOperationRequest">
<part name="request" type="req:reqType"/>
</message>
I expect, that method DirectorWSOperation will be generated with
parameter "reqType", but in my source I have method
STORAGE_CLASS_INFO void DirectorWSOperation(reqType000* Value0, reqType013*
Value1);
Method is generated with two argument, but I expect, that this method
should be generated with one argument "reqType". For java language is code
generated correctly.
May anybody can explain me this problem?
Thanks very much for any idea, Petr.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]