Ms Soap Toolkit 3.0 and complex data types.
-
Hi all, I need to use mssoapclient30 to reach a web service which use complex types as parameters and return types. There write in mssoap toolkit documantation use Type Mapper, but could not get understand how to write this file and how to call it in code. Basiclly I call a service method
var Client = WScript.CreateObject("MSSOAP.SoapClient30"); Client.mssoapinit("http://abc.com/service.wsdl","","",""); var sid = Client.MethodName("abc..."); . . .
and I don't know what will be if the parameter description says<complexType name="Alert"> <all> <element name="tag" type="xsd:string" minOccurs="1" maxOccurs="1" nillable="true" /> <element name="msg" type="xsd:string" minOccurs="1" maxOccurs="1" nillable="true" /> </all> </complexType>
as parameter to pass method and return type in wsdl.karanba