Skip to main content
Participating Frequently
March 30, 2009
Question

WebService - Multiple arguments problems

  • March 30, 2009
  • 1 reply
  • 437 views
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 ?
    This topic has been closed for replies.

    1 reply

    G-Rem44Author
    Participating Frequently
    March 31, 2009
    I up my topic... I realise that I also have problems passing only one arguments...
    It seems that FMS is uncompatible with WebService with complex types.

    Is there a solution to adapt my application to this Webservice ? Or, have I to re-write a compatible Webservice ?