使用jQuery使用SOAP服务

时间:2014-11-10 22:18:59

标签: jquery ajax jquery-mobile soap wsdl

我正在尝试使用Jquery和Jquery Mobile的应用程序:

$.ajax({
    url:  "http://localhost:8080/CalculatorWS/CalculatorWS?WSDL",
    type : "POST",
    cache : false,
    data : '<?xml version="1.0" encoding="UTF-8"?>'+
           '<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">'+
           '<S:Header/>'+
           '<S:Body>'+
           '<ns2:lista xmlns:ns2="http://calculator.me.org/"/>'+
           '</S:Body>'+
           '</S:Envelope>',
    contentType : "text/xml",
    success : function(data, status) {
        alert(data);
    }
}); 

$( document ).ajaxError(function( event, request, settings ) {
    alert (settings.url);
    alert (request.status);
});

带有Web服务URL的第一个警报,在第二个警报中我得到了它:0!

有什么问题?

之后如果我可以在Localhost中获取SOAP服务的信息,我希望,我可以通过Internet在App上做到这一点吗?

0 个答案:

没有答案