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
3 Answers
Reset to default 3That 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:
- Make sure you're using valid JSON as @Quentin mentioned.
- Make sure you're using GET requests, as @lonesomeday mentioned
- Make sure the response from the server is JSONP, as seen here