Question
WebService - Multiple arguments problems
Hi everyone,
I need to call a method of a given Webservice which is described by the following code in the WSDL file :
<s:element name="loadWorkspace">
<s:complexType>
<s:sequence>
<s:element minOccurs="1" maxOccurs="1" name="nServer" type="s:int"/>
<s:element minOccurs="0" maxOccurs="1" name="sWorkspace" type="s:string"/>
</s:sequence>
</s:complexType>
</s:element>
When the WSDL is parsed, and when I call MyWS.LoadWorkspace(0,"MyWorkspace"), the second parameter is not caught in the trace. Here is the result :
3/30 17:0:29 [INFO] SOAP: Asynchronously invoking SOAPCall: LoadWorkspace(0,"plop")
param:loadWorkspace1 0
param:LoadWorkspaceResult plop
3/30 17:0:29 [INFO] : Invoking call LoadWorkspace
loadWorkspaceResponse :-1
Someone can help me to call this method with the two arguments ?
I need to call a method of a given Webservice which is described by the following code in the WSDL file :
<s:element name="loadWorkspace">
<s:complexType>
<s:sequence>
<s:element minOccurs="1" maxOccurs="1" name="nServer" type="s:int"/>
<s:element minOccurs="0" maxOccurs="1" name="sWorkspace" type="s:string"/>
</s:sequence>
</s:complexType>
</s:element>
When the WSDL is parsed, and when I call MyWS.LoadWorkspace(0,"MyWorkspace"), the second parameter is not caught in the trace. Here is the result :
3/30 17:0:29 [INFO] SOAP: Asynchronously invoking SOAPCall: LoadWorkspace(0,"plop")
param:loadWorkspace1 0
param:LoadWorkspaceResult plop
3/30 17:0:29 [INFO] : Invoking call LoadWorkspace
loadWorkspaceResponse :-1
Someone can help me to call this method with the two arguments ?
