I know this topic has been discussed at some length. However, there is still a lack of clarity. Here is my problem. I am using cordova 2.2.0 on Mac OS X (Mountain Lion). I am trying to do an ajax call to a remote server. However the common $.ajax call didn't work the way I expected as the status code of the response was 0, which was systematically triggering the error callback. When I changed to explicitly use XMLHttpRequest it sort of worked. But I am still getting an empty response from the server. When I try in the browser (Safari and Chrome) I can see the response sent by the server. Here are my two questions:
- Is there something I am doing wrong in the code below?
Is it known whether the ios simulator doesn't handle cross domain request, especially for response from the server
var req = new XMLHttpRequest(); req.open("POST", "http://domain:8000/registration", true); req.responseType = "text"; req.withCredentials = true; req.onreadystatechange = function(){ if (req.readyState == 4) { if ((req.status == 200) || (req.status == 0)) { alert(req.responseText); } } }req.send($('#studreg').serialize());
For your information, here is the usual ajax call I first wrote:
$.ajax({
url: 'http://domain:8000/registration',
type: 'post',
data: $('#studreg').serialize(),
dataType: 'json',
cache: false,
timeout: 3000,
error: function(xhr, status, errorThrown){
if (xhr.status == 0) {
alert("Well that's fine!");
} else {
alert("error");
alert(xhr.status);
alert("Error type :"+errorThrown);
alert("Error message :"+xhr.responseText);
}
},
success: function(fullName) {
alert("it works!");
alert(fullName);
}
});
PS: I have whitelisted the remote server (actually added a * to ExternalHosts in Cordova.plist)