我正在开发一个必须从Microsoft Dynamics NAV SOAP Web服务加载数据的应用程序。当我在浏览器(IE9或Chrome v 26.0 ...)中运行代码时,代码会执行应有的操作。但是当我在Android模拟器或真实设备(htc sensation)上测试代码时,ajax调用失败,我得到XMLHttpRequest错误0。
但是,我还可以在不使用Android系统的基本身份验证的情况下从不同的Web服务加载数据。
我的白名单(位于res / xml / config.xml中)如下所示:
<access origin="*" />
<plugins>
... // all other possible plugins
<plugin name="NetworkStatus" value="org.apache.cordova.NetworkManager"/>
</plugins>
这里是代码:
function readTimeRecords(callback) {
var wsUrl = 'http://.../WS/CRONUS%20AG/Page/Time_Recording';
var soapMessage = '<?xml version="1.0" encoding="utf-8"?>' +
'<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">' +
'<soap:Body>' +
'<ReadMultiple xmlns="urn:microsoft-dynamics-schemas/page/time_recording" >' +
'<filter>' +
'<Field>No</Field>' +
'</filter>' +
'<bookmarkKey />' +
'<setSize>' +
'5' +
'</setSize>' +
'</ReadMultiple>' +
'</soap:Body> ' +
'</soap:Envelope>';
// enable cross site requests in IE
$.support.cors = true;
$.mobile.allowCrossDomainPages = true;
$.ajax({
url : wsUrl,
type : "POST",
dataType : "text",
data : soapMessage,
processData : false,
contentType : "text/xml",
password : "passwd",
username : "domain\\user",
beforeSend : function(xhr) {
xhr.setRequestHeader('SOAPAction', 'urn:microsoft-dynamics-schemas/page/time_recording');
},
success : function(msg) {
...
callback(record);
},
error : onError
})
}
function onError(XMLHttpRequest, textStatus, errorThrown) {
debugger;
console.log("error: " + textStatus + ", errorThrown: " + errorThrown);
// i just get the message error: error:
}
有人知道如何解决这个问题吗?
使用过的设置: jquery.mobile-1.3.0 jQuery的19.1 科尔多瓦-2.5
答案 0 :(得分:1)
要使CORS正常工作,您的Web服务必须启用CORS。这是一个good writeup。如果您无法使用CORS启用您的服务,则使用JSONP而不是JSON是另一种选择。