Send receive data from wsdl web service
What is the best way to send receive data from a wsdl webservice?
I have two webservice within an asmx file, one to get and one to post data to and from an MSSQL db.
Is there a way to send and receive data in captivate using my webservice?
The data will come from a Captivate variable and also be stored into a Captivate variable.
The header of my asmx webservice file:
<wsdl:definitionsxmlns:s="http://www.w3.org/2001/XMLSchema"xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"xmlns:tns="http://tempuri.org/"xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/"xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"targetNamespace="http://tempuri.org/"xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
the asmx url is: http://xxxxxxx.asmx?WSDL
The 2 service within are:
<s:element name="AddUser">
- <s:complexType>
- <s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="UserName" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="UserScore" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="UserLevel" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="UserChar" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
and
<s:element name="LookupUser">
- <s:complexType>
- <s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="UserName" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
