doupu1949 2014-03-26 11:48
浏览 73
已采纳

从AJAX调用REST服务方法

I am calling a REST service method from AJAX.

$(document).ready(function () {
        var xmml = getXmlLoginRequest();
        var wsdlURL = getWSDL('search');
        $.ajax({
            type: "POST",
            url: wsdlURL,   
            data: xmml, 
            contentType: "text/xml;charset=utf-8",
            dataType: 'text',
            success: function (result) {
                debugger;
                alert(" success" + result);
            },
            error: function (jqXHR, textStatus, errorThrown) {
                debugger;
                alert(" error" + "jq :" + jqXHR + "textStatus :" + textStatus + "error : " + errorThrown);
            }
        });

        function getXmlLoginRequest() {
            debugger;
            var xml = '<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> \
             <soap:Body> \
                <search> \
                <qry>svein </qry> \
                </search> \
             </soap:Body> \
           </soap:Envelope>';

            return xml;
        }
        function getWSDL(methodName) {
            debugger;
            var url = 'http:/MyURL/search.php?username=abc&password=def';
            return url;
        }

    });  

I am getting result as empty in success block. If I change dataType to text, I get an exception in Failure block which says cannot parse NULL.
Am I writing incorrect syntax? When I run the url on browser with method and its parameters, it gives proper result.

  • 写回答

2条回答 默认 最新

  • douguxun6866 2014-03-26 11:58
    关注

    What I see here is SOAP and not REST. You should try jQuery SOAP Plugin and not jQuery AJAX method directly.

    Moreover WSDL Url is not the service URL, but URL of service description. The service URL is located in WSDL.

    Service should be located on the same domain as your html page, because of same-origin-policy.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog