在SENCHA TOUCH中使用SOAP Web服务?

时间:2014-11-11 16:12:39

标签: sencha-touch sencha-architect

我发现此帖对我有用,但我收到的是HTML响应,而不是XML响应,这是我的应用所需要的。

How to consume SOAP web service in SENCHA TOUCH?

这是我对我的服务器的请求......我知道我应该做一个POST动作,因为这个人被告知,但我仍然得到根节点错误。

这是使用WebService的正确方法,还是使用数据模型和存储在Sencha中使用另一种方法?我已经看到了一个使用CFC的例子,但我使用的是IIS 7.5

POST /url/mobilews.asmx HTTP/1.1
Host: 10.0.1.182
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/HelloWorld"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <HelloWorld xmlns="http://tempuri.org/" />
  </soap:Body>
</soap:Envelope>




Ext.Ajax.request({
    method: 'GET',
    url: 'http://url/mobileservice/mobilews.asmx?op=HelloWorld',
    params: { method: 'HelloWorld', format: 'json' },
    success: function (response, request) {
        alert('Working!');
        alert(response.responseText);


    },
    failure: function (response, request) {
        alert('Not working!');
    }
});

以下是错误消息:

<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><soap:Fault><soap:Code><soap:Value>soap:Receiver</soap:Value></soap:Code><soap:Reason><soap:Text xml:lang="en">System.Web.Services.Protocols.SoapException: Server was unable to process request. ---&gt; System.Xml.XmlException: Data at the root level is invalid. Line 1, position 1.

0 个答案:

没有答案