I am trying to pass parameters to consume SOAP web-service located at http://server.company.com/webservices/locationservice.asmx with webmethod "verifyAddress".When I pass parameter values in browser at http://server.company.com/webservic...treetName=HOPKINS&StreetType=ROAD&Quadrant=SWIn result I get XML Output from which I have to display only few fields from the dataset."The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values."\[code\]<pre>POST /webservices/locationservice.asmx/verifyAddress HTTP/1.1Host: server.company.comContent-Type: application/x-www-form-urlencodedContent-Length: lengthStreetNumber=string&StreetNumberSuffix=string&StreetName=string&StreetType=string&Quadrant=string</pre><pre>HTTP/1.1 200 OKContent-Type: text/xml; charset=utf-8Content-Length: length?xml version="1.0" encoding="utf-8"?>ReturnObject xmlns="http://tempuri.org/WebServices/LocationService"> returnCodes>string/returnCodes> details>string/details> returnDataset> schema xmlns="http://www.w3.org/2001/XMLSchema">schema/schema>xml/returnDataset> returnBlkAddrDataset> schema xmlns="http://www.w3.org/2001/XMLSchema">schema/schema>xml/returnBlkAddrDataset> returnCDDataSet> schema xmlns="http://www.w3.org/2001/XMLSchema">schema/schema>xml/returnCDDataSet> UNIT>string/UNIT> UNITNUMBER>string/UNITNUMBER> sourceOperation>string/sourceOperation> processTime>string/processTime>/ReturnObject></pre>\[/code\]The main issue is when I am trying to get the results using jQuery Ajax for the Mobile App development in Eclipse (for Android), I am not getting any results except error, and I don't know how to display those fields on HTML. Can anyone please help me and correct my code as follows:\[code\]<pre>function CallService() { var stnum = $("#textinputStNum").val(); var stnumsuffix = $("#textinputStNumSuffix").val(); var stname = $("#textinputStName").val(); var sttype = $("#listStType").val(); var quad = $("#listQuad").val(); $.ajax({ type: "POST", url: "http://server.company.com/webservices/locationservice.asmx/verifyAddress", contentType: "application/soap+xml; charset=utf-8", data: "{'StreetNumber=' + stnum + '&StreetNumberSuffix=' + stnumsuffix + '&StreetName=' + stname + '&StreetType=' + sttype + '&Quadrant=' + quad}", //Parameters are passed to the WebMethod. //data: "{StreetNumber: '" + stnum + "' , StreetNumberSuffix: '" + stnumsuffix + "' , StreetName: '" + stname + "' , StreetType: '" + sttype + "' , Quadrant: '" + quad + "'}", //data: {"StreetNumber=1234&StreetNumberSuffix=1/2&StreetName=HOPKINS&StreetType=ROAD&Quadrant=SW"}, //data: {"StreetNumber":'1234',"StreetNumberSuffix":'1/2',"StreetName":'HOPKINS',"StreetType":'ROAD',"Quadrant":'SW'}, dataType: "xml", //async:false, //processData: false, beforeSend: function () { alert("Processing..."); }, success: function (msg) { alert(msg); }, error: function(jqXHR, textStatus, errorThrown) { alert(textStatus + " " + errorThrown) } }</pre>\[/code\]