Note that there are some explanatory texts on larger screens.

plurals
  1. POAndroid 2.1 and Ksoap2-Android-assembly-2.4 -- SoapFault Error
    primarykey
    data
    text
    <p>I am very new to Android and ksoap2 development. I have been searching on the forums for an answer to my error and still have not found a fix. Hopefully someone will be able to figure how to fix the error.</p> <p>I am calling a Webservice with 10 parameters in my sample android app using the Ksoap2-Android-assembly-2.4 jar library.</p> <p>The error from the responsedump call:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt; &lt;soap:Body&gt; &lt;soap:Fault&gt; &lt;faultcode&gt;soap:Client&lt;/faultcode&gt; &lt;faultstring&gt;Server was unable to read request. ---&amp;gt; There is an error in XML document (1, 435). ---&amp;gt; Input string was not in a correct format.&lt;/faultstring&gt; &lt;detail /&gt; &lt;/soap:Fault&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </code></pre> <p>The request from the requestdump call:</p> <pre><code>&lt;v:Envelope xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:c="http://schemas.xmlsoap.org/soap/encoding/" xmlns:v="http://schemas.xmlsoap.org/soap/envelope/"&gt; &lt;v:Header /&gt; &lt;v:Body&gt; &lt;InsertAnalyzerQueue xmlns="http://63.237.52.216/service.asmx/" id="o0" c:root="1"&gt; &lt;uploadcustomerkey i:type="d:int"&gt;11111&lt;/uploadcustomerkey&gt; &lt;uploadcustomertype i:type="d:string"&gt;C&lt;/uploadcustomertype&gt; &lt;description i:type="d:string"&gt;ANDROIDTEST&lt;/description&gt; &lt;uploadedfile i:type="d:string"&gt;Myfile&lt;/uploadedfile&gt; &lt;companionfile i:type="d:string"&gt;C&lt;/companionfile&gt; &lt;emailaddress i:type="d:string"&gt;tom@transferexpress&lt;/emailaddress&gt; &lt;generatedfilename i:type="d:string"&gt;MyFileName&lt;/generatedfilename&gt; &lt;companyname i:type="d:string"&gt;MyCompany&lt;/companyname&gt; &lt;dealerid i:type="d:string"&gt;TEST&lt;/dealerid&gt; &lt;phonenbr i:type="d:string"&gt;4409181900&lt;/phonenbr&gt; &lt;/InsertAnalyzerQueue&gt; &lt;/v:Body&gt;&lt;/v:Envelope&gt; </code></pre> <p>My actual code: </p> <pre><code>package com.example.soapconnect2; import java.io.IOException; import org.ksoap2.transport.AndroidHttpTransport; import org.ksoap2.SoapEnvelope; import org.ksoap2.serialization.PropertyInfo; import org.ksoap2.serialization.SoapObject; import org.ksoap2.serialization.SoapSerializationEnvelope; import org.xmlpull.v1.XmlPullParserException; import android.app.Activity; import android.os.Bundle; import android.widget.Toast; public class SoapConnect2 extends Activity { /** Called when the activity is first created. */ private static final String SOAP_ACTION = "http://63.237.52.216/service.asmx/InsertAnalyzerQueue"; //Need to include WebService method private static final String METHOD_NAME = "InsertAnalyzerQueue"; //WebService private static final String NAMESPACE = "http://63.237.52.216/service.asmx/"; //Only use IP address plus the asmx file name private static final String URL = "http://63.237.52.216/service.asmx"; //Only use IP address plus the asmx file name //HttpGet httpPost = new HttpGet("http://63.237.52.215/serce.asmx/IsValidReferenceID?referenceID='092010-0123A1of1'"); //private static final String URL = "http://63.237.52.216/service.asmx/InsertAnalyzerQueue?uploadcustomerkey=1111&amp;uploadcustomertype=T&amp;description=TESTTESTTEST&amp;uploadedfile=My_file.jpg&amp;companionfile=&amp;emailaddress=tom@test.com&amp;generatedfilename=MyFileName.jpg&amp;companyname=MyCompany&amp;dealerid=TEST&amp;phonenbr=5555555555"; String[] results; String resultdata; Toast mtoast; PropertyInfo mPropertyInfo; String mRequestDump = null; String mResponseDump = null; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); try { SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME); mPropertyInfo = new PropertyInfo(); //mPropertyInfo.elementType.setValue(request.addProperty("uploadcustomerkey", "11111")); //mPropertyInfo.setElementType(elementType)= PropertyInfo.INTEGER_CLASS; //Adds parameters &lt;parameter name&gt;, &lt;value&gt; request.addProperty("uploadcustomerkey", 11111); request.addProperty("uploadcustomertype", "C"); request.addProperty("description", "ANDROIDTEST"); request.addProperty("uploadedfile", "Myfile"); request.addProperty("companionfile", "C"); request.addProperty("emailaddress", "tom@transferexpress"); request.addProperty("generatedfilename", "MyFileName"); request.addProperty("companyname", "MyCompany"); request.addProperty("dealerid", "TEST"); request.addProperty("phonenbr", "4409181900"); SoapSerializationEnvelope mEnvelope = new SoapSerializationEnvelope(SoapEnvelope.VER11); mEnvelope.dotNet=true; mEnvelope.setOutputSoapObject(request); mEnvelope.encodingStyle = SoapSerializationEnvelope.XSI; AndroidHttpTransport androidHttpTransport = new AndroidHttpTransport(URL); androidHttpTransport.debug = true; try { androidHttpTransport.call(SOAP_ACTION, mEnvelope); } catch (XmlPullParserException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } mRequestDump = androidHttpTransport.requestDump; mResponseDump = androidHttpTransport.responseDump; //SoapObject result = (SoapObject)envelope.bodyIn; //resultdata = result.getProperty(0).toString(); } catch (IllegalArgumentException e) { // TODO Auto-generated catch block e.printStackTrace(); } mtoast = Toast.makeText(getBaseContext(), resultdata, Toast.LENGTH_LONG); mtoast.show(); } } </code></pre> <p>The actual Webservice WSDL: <code>http://63.237.52.216/service.asmx?wsdl</code></p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; - &lt;wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://63.237.52.216/service.asmx/" xmlns:s1="http://microsoft.com/wsdl/types/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="http://63.237.52.216/service.asmx/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"&gt; - &lt;wsdl:types&gt; - &lt;s:schema elementFormDefault="qualified" targetNamespace="http://63.237.52.216/service.asmx/"&gt; &lt;s:import namespace="http://microsoft.com/wsdl/types/" /&gt; - &lt;s:element name="IsValidReferenceID"&gt; - &lt;s:complexType&gt; + &lt;s:sequence&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="referenceID" type="s:string" /&gt; &lt;/s:sequence&gt; &lt;/s:complexType&gt; &lt;/s:element&gt; - &lt;s:element name="IsValidReferenceIDResponse"&gt; - &lt;s:complexType&gt; - &lt;s:sequence&gt; &lt;s:element minOccurs="1" maxOccurs="1" name="IsValidReferenceIDResult" type="s:boolean" /&gt; &lt;/s:sequence&gt; &lt;/s:complexType&gt; &lt;/s:element&gt; - &lt;s:element name="GetDealersUploadedItems"&gt; - &lt;s:complexType&gt; - &lt;s:sequence&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="dealerID" type="s:string" /&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="phoneNumber" type="s:string" /&gt; &lt;/s:sequence&gt; &lt;/s:complexType&gt; &lt;/s:element&gt; - &lt;s:element name="GetDealersUploadedItemsResponse"&gt; - &lt;s:complexType&gt; - &lt;s:sequence&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="GetDealersUploadedItemsResult" type="tns:ArrayOfUploadItem" /&gt; &lt;/s:sequence&gt; &lt;/s:complexType&gt; &lt;/s:element&gt; - &lt;s:complexType name="ArrayOfUploadItem"&gt; - &lt;s:sequence&gt; &lt;s:element minOccurs="0" maxOccurs="unbounded" name="UploadItem" nillable="true" type="tns:UploadItem" /&gt; &lt;/s:sequence&gt; &lt;/s:complexType&gt; - &lt;s:complexType name="UploadItem"&gt; - &lt;s:sequence&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="UploadRefID" type="s:string" /&gt; &lt;s:element minOccurs="1" maxOccurs="1" name="UploadedDate" type="s:dateTime" /&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="UploadedFileName" type="s:string" /&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="UpdatedFlag" type="s:string" /&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="Description" type="s:string" /&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="StatusName" type="s:string" /&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="EmailAddress" type="s:string" /&gt; &lt;/s:sequence&gt; &lt;/s:complexType&gt; - &lt;s:element name="UpdateOrderStatus"&gt; - &lt;s:complexType&gt; - &lt;s:sequence&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="referenceIDs" type="s:string" /&gt; &lt;s:element minOccurs="1" maxOccurs="1" name="orderStatus" type="s:int" /&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="newCustomerID" type="s:string" /&gt; &lt;/s:sequence&gt; &lt;/s:complexType&gt; &lt;/s:element&gt; - &lt;s:element name="UpdateOrderStatusResponse"&gt; - &lt;s:complexType&gt; - &lt;s:sequence&gt; &lt;s:element minOccurs="1" maxOccurs="1" name="UpdateOrderStatusResult" type="s:int" /&gt; &lt;/s:sequence&gt; &lt;/s:complexType&gt; &lt;/s:element&gt; - &lt;s:element name="InsertAnalyzerQueue"&gt; - &lt;s:complexType&gt; - &lt;s:sequence&gt; &lt;s:element minOccurs="1" maxOccurs="1" name="uploadcustomerkey" type="s:int" /&gt; &lt;s:element minOccurs="1" maxOccurs="1" name="uploadcustomertype" type="s1:char" /&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="description" type="s:string" /&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="uploadedfile" type="s:string" /&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="companionfile" type="s:string" /&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="emailaddress" type="s:string" /&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="generatedfilename" type="s:string" /&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="companyname" type="s:string" /&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="dealerid" type="s:string" /&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="phonenbr" type="s:string" /&gt; &lt;/s:sequence&gt; &lt;/s:complexType&gt; &lt;/s:element&gt; - &lt;s:element name="InsertAnalyzerQueueResponse"&gt; - &lt;s:complexType&gt; - &lt;s:sequence&gt; &lt;s:element minOccurs="1" maxOccurs="1" name="InsertAnalyzerQueueResult" type="s:int" /&gt; &lt;/s:sequence&gt; &lt;/s:complexType&gt; &lt;/s:element&gt; - &lt;s:element name="MyTestService"&gt; &lt;s:complexType /&gt; &lt;/s:element&gt; - &lt;s:element name="MyTestServiceResponse"&gt; - &lt;s:complexType&gt; - &lt;s:sequence&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="MyTestServiceResult" type="s:string" /&gt; &lt;/s:sequence&gt; &lt;/s:complexType&gt; &lt;/s:element&gt; &lt;s:element name="boolean" type="s:boolean" /&gt; &lt;s:element name="ArrayOfUploadItem" nillable="true" type="tns:ArrayOfUploadItem" /&gt; &lt;s:element name="int" type="s:int" /&gt; &lt;s:element name="string" nillable="true" type="s:string" /&gt; &lt;/s:schema&gt; - &lt;s:schema elementFormDefault="qualified" targetNamespace="http://microsoft.com/wsdl/types/"&gt; - &lt;s:simpleType name="char"&gt; &lt;s:restriction base="s:unsignedShort" /&gt; &lt;/s:simpleType&gt; &lt;/s:schema&gt; &lt;/wsdl:types&gt; - &lt;wsdl:message name="IsValidReferenceIDSoapIn"&gt; &lt;wsdl:part name="parameters" element="tns:IsValidReferenceID" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="IsValidReferenceIDSoapOut"&gt; &lt;wsdl:part name="parameters" element="tns:IsValidReferenceIDResponse" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="GetDealersUploadedItemsSoapIn"&gt; &lt;wsdl:part name="parameters" element="tns:GetDealersUploadedItems" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="GetDealersUploadedItemsSoapOut"&gt; &lt;wsdl:part name="parameters" element="tns:GetDealersUploadedItemsResponse" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="UpdateOrderStatusSoapIn"&gt; &lt;wsdl:part name="parameters" element="tns:UpdateOrderStatus" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="UpdateOrderStatusSoapOut"&gt; &lt;wsdl:part name="parameters" element="tns:UpdateOrderStatusResponse" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="InsertAnalyzerQueueSoapIn"&gt; &lt;wsdl:part name="parameters" element="tns:InsertAnalyzerQueue" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="InsertAnalyzerQueueSoapOut"&gt; &lt;wsdl:part name="parameters" element="tns:InsertAnalyzerQueueResponse" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="MyTestServiceSoapIn"&gt; &lt;wsdl:part name="parameters" element="tns:MyTestService" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="MyTestServiceSoapOut"&gt; &lt;wsdl:part name="parameters" element="tns:MyTestServiceResponse" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="IsValidReferenceIDHttpGetIn"&gt; &lt;wsdl:part name="referenceID" type="s:string" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="IsValidReferenceIDHttpGetOut"&gt; &lt;wsdl:part name="Body" element="tns:boolean" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="GetDealersUploadedItemsHttpGetIn"&gt; &lt;wsdl:part name="dealerID" type="s:string" /&gt; &lt;wsdl:part name="phoneNumber" type="s:string" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="GetDealersUploadedItemsHttpGetOut"&gt; &lt;wsdl:part name="Body" element="tns:ArrayOfUploadItem" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="UpdateOrderStatusHttpGetIn"&gt; &lt;wsdl:part name="referenceIDs" type="s:string" /&gt; &lt;wsdl:part name="orderStatus" type="s:string" /&gt; &lt;wsdl:part name="newCustomerID" type="s:string" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="UpdateOrderStatusHttpGetOut"&gt; &lt;wsdl:part name="Body" element="tns:int" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="InsertAnalyzerQueueHttpGetIn"&gt; &lt;wsdl:part name="uploadcustomerkey" type="s:string" /&gt; &lt;wsdl:part name="uploadcustomertype" type="s:string" /&gt; &lt;wsdl:part name="description" type="s:string" /&gt; &lt;wsdl:part name="uploadedfile" type="s:string" /&gt; &lt;wsdl:part name="companionfile" type="s:string" /&gt; &lt;wsdl:part name="emailaddress" type="s:string" /&gt; &lt;wsdl:part name="generatedfilename" type="s:string" /&gt; &lt;wsdl:part name="companyname" type="s:string" /&gt; &lt;wsdl:part name="dealerid" type="s:string" /&gt; &lt;wsdl:part name="phonenbr" type="s:string" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="InsertAnalyzerQueueHttpGetOut"&gt; &lt;wsdl:part name="Body" element="tns:int" /&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name="MyTestServiceHttpGetIn" /&gt; - &lt;wsdl:message name="MyTestServiceHttpGetOut"&gt; &lt;wsdl:part name="Body" element="tns:string" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="IsValidReferenceIDHttpPostIn"&gt; &lt;wsdl:part name="referenceID" type="s:string" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="IsValidReferenceIDHttpPostOut"&gt; &lt;wsdl:part name="Body" element="tns:boolean" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="GetDealersUploadedItemsHttpPostIn"&gt; &lt;wsdl:part name="dealerID" type="s:string" /&gt; &lt;wsdl:part name="phoneNumber" type="s:string" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="GetDealersUploadedItemsHttpPostOut"&gt; &lt;wsdl:part name="Body" element="tns:ArrayOfUploadItem" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="UpdateOrderStatusHttpPostIn"&gt; &lt;wsdl:part name="referenceIDs" type="s:string" /&gt; &lt;wsdl:part name="orderStatus" type="s:string" /&gt; &lt;wsdl:part name="newCustomerID" type="s:string" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="UpdateOrderStatusHttpPostOut"&gt; &lt;wsdl:part name="Body" element="tns:int" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="InsertAnalyzerQueueHttpPostIn"&gt; &lt;wsdl:part name="uploadcustomerkey" type="s:string" /&gt; &lt;wsdl:part name="uploadcustomertype" type="s:string" /&gt; &lt;wsdl:part name="description" type="s:string" /&gt; &lt;wsdl:part name="uploadedfile" type="s:string" /&gt; &lt;wsdl:part name="companionfile" type="s:string" /&gt; &lt;wsdl:part name="emailaddress" type="s:string" /&gt; &lt;wsdl:part name="generatedfilename" type="s:string" /&gt; &lt;wsdl:part name="companyname" type="s:string" /&gt; &lt;wsdl:part name="dealerid" type="s:string" /&gt; &lt;wsdl:part name="phonenbr" type="s:string" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:message name="InsertAnalyzerQueueHttpPostOut"&gt; &lt;wsdl:part name="Body" element="tns:int" /&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name="MyTestServiceHttpPostIn" /&gt; - &lt;wsdl:message name="MyTestServiceHttpPostOut"&gt; &lt;wsdl:part name="Body" element="tns:string" /&gt; &lt;/wsdl:message&gt; - &lt;wsdl:portType name="ServiceSoap"&gt; - &lt;wsdl:operation name="IsValidReferenceID"&gt; &lt;wsdl:input message="tns:IsValidReferenceIDSoapIn" /&gt; &lt;wsdl:output message="tns:IsValidReferenceIDSoapOut" /&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="GetDealersUploadedItems"&gt; &lt;wsdl:input message="tns:GetDealersUploadedItemsSoapIn" /&gt; &lt;wsdl:output message="tns:GetDealersUploadedItemsSoapOut" /&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="UpdateOrderStatus"&gt; &lt;wsdl:input message="tns:UpdateOrderStatusSoapIn" /&gt; &lt;wsdl:output message="tns:UpdateOrderStatusSoapOut" /&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="InsertAnalyzerQueue"&gt; &lt;wsdl:input message="tns:InsertAnalyzerQueueSoapIn" /&gt; &lt;wsdl:output message="tns:InsertAnalyzerQueueSoapOut" /&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="MyTestService"&gt; &lt;wsdl:input message="tns:MyTestServiceSoapIn" /&gt; &lt;wsdl:output message="tns:MyTestServiceSoapOut" /&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:portType&gt; - &lt;wsdl:portType name="ServiceHttpGet"&gt; - &lt;wsdl:operation name="IsValidReferenceID"&gt; &lt;wsdl:input message="tns:IsValidReferenceIDHttpGetIn" /&gt; &lt;wsdl:output message="tns:IsValidReferenceIDHttpGetOut" /&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="GetDealersUploadedItems"&gt; &lt;wsdl:input message="tns:GetDealersUploadedItemsHttpGetIn" /&gt; &lt;wsdl:output message="tns:GetDealersUploadedItemsHttpGetOut" /&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="UpdateOrderStatus"&gt; &lt;wsdl:input message="tns:UpdateOrderStatusHttpGetIn" /&gt; &lt;wsdl:output message="tns:UpdateOrderStatusHttpGetOut" /&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="InsertAnalyzerQueue"&gt; &lt;wsdl:input message="tns:InsertAnalyzerQueueHttpGetIn" /&gt; &lt;wsdl:output message="tns:InsertAnalyzerQueueHttpGetOut" /&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="MyTestService"&gt; &lt;wsdl:input message="tns:MyTestServiceHttpGetIn" /&gt; &lt;wsdl:output message="tns:MyTestServiceHttpGetOut" /&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:portType&gt; - &lt;wsdl:portType name="ServiceHttpPost"&gt; - &lt;wsdl:operation name="IsValidReferenceID"&gt; &lt;wsdl:input message="tns:IsValidReferenceIDHttpPostIn" /&gt; &lt;wsdl:output message="tns:IsValidReferenceIDHttpPostOut" /&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="GetDealersUploadedItems"&gt; &lt;wsdl:input message="tns:GetDealersUploadedItemsHttpPostIn" /&gt; &lt;wsdl:output message="tns:GetDealersUploadedItemsHttpPostOut" /&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="UpdateOrderStatus"&gt; &lt;wsdl:input message="tns:UpdateOrderStatusHttpPostIn" /&gt; &lt;wsdl:output message="tns:UpdateOrderStatusHttpPostOut" /&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="InsertAnalyzerQueue"&gt; &lt;wsdl:input message="tns:InsertAnalyzerQueueHttpPostIn" /&gt; &lt;wsdl:output message="tns:InsertAnalyzerQueueHttpPostOut" /&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="MyTestService"&gt; &lt;wsdl:input message="tns:MyTestServiceHttpPostIn" /&gt; &lt;wsdl:output message="tns:MyTestServiceHttpPostOut" /&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:portType&gt; - &lt;wsdl:binding name="ServiceSoap" type="tns:ServiceSoap"&gt; &lt;soap:binding transport="http://schemas.xmlsoap.org/soap/http" /&gt; - &lt;wsdl:operation name="IsValidReferenceID"&gt; &lt;soap:operation soapAction="http://63.237.52.216/service.asmx/IsValidReferenceID" style="document" /&gt; - &lt;wsdl:input&gt; &lt;soap:body use="literal" /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;soap:body use="literal" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="GetDealersUploadedItems"&gt; &lt;soap:operation soapAction="http://63.237.52.216/service.asmx/GetDealersUploadedItems" style="document" /&gt; - &lt;wsdl:input&gt; &lt;soap:body use="literal" /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;soap:body use="literal" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="UpdateOrderStatus"&gt; &lt;soap:operation soapAction="http://63.237.52.216/service.asmx/UpdateOrderStatus" style="document" /&gt; - &lt;wsdl:input&gt; &lt;soap:body use="literal" /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;soap:body use="literal" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="InsertAnalyzerQueue"&gt; &lt;soap:operation soapAction="http://63.237.52.216/service.asmx/InsertAnalyzerQueue" style="document" /&gt; - &lt;wsdl:input&gt; &lt;soap:body use="literal" /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;soap:body use="literal" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="MyTestService"&gt; &lt;soap:operation soapAction="http://63.237.52.216/service.asmx/MyTestService" style="document" /&gt; - &lt;wsdl:input&gt; &lt;soap:body use="literal" /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;soap:body use="literal" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:binding&gt; - &lt;wsdl:binding name="ServiceSoap12" type="tns:ServiceSoap"&gt; &lt;soap12:binding transport="http://schemas.xmlsoap.org/soap/http" /&gt; - &lt;wsdl:operation name="IsValidReferenceID"&gt; &lt;soap12:operation soapAction="http://63.237.52.216/service.asmx/IsValidReferenceID" style="document" /&gt; - &lt;wsdl:input&gt; &lt;soap12:body use="literal" /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;soap12:body use="literal" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="GetDealersUploadedItems"&gt; &lt;soap12:operation soapAction="http://63.237.52.216/service.asmx/GetDealersUploadedItems" style="document" /&gt; - &lt;wsdl:input&gt; &lt;soap12:body use="literal" /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;soap12:body use="literal" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="UpdateOrderStatus"&gt; &lt;soap12:operation soapAction="http://63.237.52.216/service.asmx/UpdateOrderStatus" style="document" /&gt; - &lt;wsdl:input&gt; &lt;soap12:body use="literal" /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;soap12:body use="literal" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="InsertAnalyzerQueue"&gt; &lt;soap12:operation soapAction="http://63.237.52.216/service.asmx/InsertAnalyzerQueue" style="document" /&gt; - &lt;wsdl:input&gt; &lt;soap12:body use="literal" /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;soap12:body use="literal" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="MyTestService"&gt; &lt;soap12:operation soapAction="http://63.237.52.216/service.asmx/MyTestService" style="document" /&gt; - &lt;wsdl:input&gt; &lt;soap12:body use="literal" /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;soap12:body use="literal" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:binding&gt; - &lt;wsdl:binding name="ServiceHttpGet" type="tns:ServiceHttpGet"&gt; &lt;http:binding verb="GET" /&gt; - &lt;wsdl:operation name="IsValidReferenceID"&gt; &lt;http:operation location="/IsValidReferenceID" /&gt; - &lt;wsdl:input&gt; &lt;http:urlEncoded /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;mime:mimeXml part="Body" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="GetDealersUploadedItems"&gt; &lt;http:operation location="/GetDealersUploadedItems" /&gt; - &lt;wsdl:input&gt; &lt;http:urlEncoded /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;mime:mimeXml part="Body" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="UpdateOrderStatus"&gt; &lt;http:operation location="/UpdateOrderStatus" /&gt; - &lt;wsdl:input&gt; &lt;http:urlEncoded /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;mime:mimeXml part="Body" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="InsertAnalyzerQueue"&gt; &lt;http:operation location="/InsertAnalyzerQueue" /&gt; - &lt;wsdl:input&gt; &lt;http:urlEncoded /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;mime:mimeXml part="Body" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="MyTestService"&gt; &lt;http:operation location="/MyTestService" /&gt; - &lt;wsdl:input&gt; &lt;http:urlEncoded /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;mime:mimeXml part="Body" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:binding&gt; - &lt;wsdl:binding name="ServiceHttpPost" type="tns:ServiceHttpPost"&gt; &lt;http:binding verb="POST" /&gt; - &lt;wsdl:operation name="IsValidReferenceID"&gt; &lt;http:operation location="/IsValidReferenceID" /&gt; - &lt;wsdl:input&gt; &lt;mime:content type="application/x-www-form-urlencoded" /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;mime:mimeXml part="Body" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="GetDealersUploadedItems"&gt; &lt;http:operation location="/GetDealersUploadedItems" /&gt; - &lt;wsdl:input&gt; &lt;mime:content type="application/x-www-form-urlencoded" /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;mime:mimeXml part="Body" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="UpdateOrderStatus"&gt; &lt;http:operation location="/UpdateOrderStatus" /&gt; - &lt;wsdl:input&gt; &lt;mime:content type="application/x-www-form-urlencoded" /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;mime:mimeXml part="Body" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="InsertAnalyzerQueue"&gt; &lt;http:operation location="/InsertAnalyzerQueue" /&gt; - &lt;wsdl:input&gt; &lt;mime:content type="application/x-www-form-urlencoded" /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;mime:mimeXml part="Body" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; - &lt;wsdl:operation name="MyTestService"&gt; &lt;http:operation location="/MyTestService" /&gt; - &lt;wsdl:input&gt; &lt;mime:content type="application/x-www-form-urlencoded" /&gt; &lt;/wsdl:input&gt; - &lt;wsdl:output&gt; &lt;mime:mimeXml part="Body" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:binding&gt; - &lt;wsdl:service name="Service"&gt; - &lt;wsdl:port name="ServiceSoap" binding="tns:ServiceSoap"&gt; &lt;soap:address location="http://63.237.52.216/service.asmx" /&gt; &lt;/wsdl:port&gt; - &lt;wsdl:port name="ServiceSoap12" binding="tns:ServiceSoap12"&gt; &lt;soap12:address location="http://63.237.52.216/service.asmx" /&gt; &lt;/wsdl:port&gt; - &lt;wsdl:port name="ServiceHttpGet" binding="tns:ServiceHttpGet"&gt; &lt;http:address location="http://63.237.52.216/service.asmx" /&gt; &lt;/wsdl:port&gt; - &lt;wsdl:port name="ServiceHttpPost" binding="tns:ServiceHttpPost"&gt; &lt;http:address location="http://63.237.52.216/service.asmx" /&gt; &lt;/wsdl:port&gt; &lt;/wsdl:service&gt; &lt;/wsdl:definitions&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload