Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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:

  1. Is there something I am doing wrong in the code below?
  2. 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)

share|improve this question
You must use jsonp for ajax call to a remote server, stackoverflow.com/questions/5943630/… – Daniele Jan 17 at 8:44
thanks for your comment. I tried the json and it's not going to the server at all both in the simulator and the device. I don't what's wrong this my ajax request – joque Jan 19 at 14:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.