最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - JQuery ajax call to cross-domain webservice - Stack Overflow

programmeradmin1浏览0评论

I would like consume cross-domain web-service from client with jquery

function TestService() {
    $.ajax({
        url: "/GetGeoCompletionList",
        data: { "prefixText":"eka", "count":"10", "contextKey":"Trace_0$Rus" },
        dataType: "jsonp",
        type: "GET",
        contentType: "application/json; charset=utf-8",
        success: function (data) {
            alert(data);
        },
        error: function (XMLHttpRequest, textStatus, errorThrown) {
            alert(XMLHttpRequest.statusText);
        }
    });
}

At the error hander I have: textStatus=parseerror

XMLHttpRequest has status 200 and readyState 4

errorThrown is jQuery16103495572647140...78197139 was not called

I've spent on it for a lot of hours and couldn't make it work. Can u help me?

UPDATED

Thanks, I change to GET, and fix my data string.

Service returns valid JSON object. I can see it at firebug on other site, which consume this service. But that site is getting mon json(since it has one domain).

So, if the web-service returns valid JSON(not jsonp), I can't use the same method with jsonp? What can I do for consiming json web-service from other domain?

I would like consume cross-domain web-service from client with jquery

function TestService() {
    $.ajax({
        url: "http://service.asmx/GetGeoCompletionList",
        data: { "prefixText":"eka", "count":"10", "contextKey":"Trace_0$Rus" },
        dataType: "jsonp",
        type: "GET",
        contentType: "application/json; charset=utf-8",
        success: function (data) {
            alert(data);
        },
        error: function (XMLHttpRequest, textStatus, errorThrown) {
            alert(XMLHttpRequest.statusText);
        }
    });
}

At the error hander I have: textStatus=parseerror

XMLHttpRequest has status 200 and readyState 4

errorThrown is jQuery16103495572647140...78197139 was not called

I've spent on it for a lot of hours and couldn't make it work. Can u help me?

UPDATED

Thanks, I change to GET, and fix my data string.

Service returns valid JSON object. I can see it at firebug on other site, which consume this service. But that site is getting mon json(since it has one domain).

So, if the web-service returns valid JSON(not jsonp), I can't use the same method with jsonp? What can I do for consiming json web-service from other domain?

Share Improve this question edited May 24, 2011 at 23:39 Andrew Kalashnikov asked May 24, 2011 at 23:10 Andrew KalashnikovAndrew Kalashnikov 3,1735 gold badges36 silver badges58 bronze badges 3
  • What does the HTTP request and HTTP response look like? – Quentin Commented May 24, 2011 at 23:14
  • possible duplicate of parsererror after jQuery.ajax request with jsonp content type – Jerod Venema Commented May 24, 2011 at 23:14
  • If you don't understand why you can't consume the service if it just returns JSON instead of JSONP, read here: stackoverflow./questions/2067472/please-explain-jsonp/… – Jerod Venema Commented May 25, 2011 at 12:57
Add a ment  | 

3 Answers 3

Reset to default 3

That string you are passing and claiming is JSON isn't JSON.

Only " characters may be used to quote strings.

Also, you can't make a cross domain JSON-P POST request.

You cannot do cross-domain POST requests using JSONP. JSONP works by adding script tags to the page. script tags always fetch their source using GET HTTP requests. You won't get any data posted.

Summary of problems:

  1. Make sure you're using valid JSON as @Quentin mentioned.
  2. Make sure you're using GET requests, as @lonesomeday mentioned
  3. Make sure the response from the server is JSONP, as seen here
发布评论

评论列表(0)

  1. 暂无评论