I am implementing some AJAX requests to my server. The request type and params are exactly same in two cases but the response type coming from the server is different.
CASE 1 :
This is implementation in Titanium using titanium network http client.
var xhr = Ti.Network.createHTTPClient({
onload : function() {
alert('sucess');
},
onerror : function(e) {
alert('error');
},
timeout : 5000
});
var main_url = "http://localhost:3000/shops/560/login.json?api_token=some_token&customer[phone_number]=9988776655&customer[pin]=9876";
xhr.open('GET', main_url);
xhr.send();
which returns the response perfectly and seems working for me.
CASE 2 :
This is implementation in local file using JQuery AJAX method.
var main_url = "http://localhost:3000/shops/560/login.json?api_token=some_token&customer[phone_number]=9988776655&customer[pin]=9876";
$.ajax({
url: main_url,
type: "GET",
dataType: "json",
timeout: 5000,
success: function(data, status, xmlstatus) {
alert("success");
},
error: function(data, status, xmlstatus){
if (t === "timeout") {
alert("timeout");
} else {
alert("some error");
}
}
});
But due to CROSS DOMAIN policy in browsers it returns
XMLHttpRequest cannot load http://localhost:3000/shops/560/login.json?api_token=some_token&customer[phone_number]=9988776655&customer[pin]=9876. Origin null is not allowed by Access-Control-Allow-Origin.
So, to avoid this I added another paramater
&callback = ?
But still it returns
alert('some error');
Not able to figure out where the stuff is going wrong. When URL, parameters, type everything is same.
---------------EDIT-------------
Digging down iniside gives me respone :
console.log(data) => parsererror
and
console.log(xmlstatus) => jQuery164023596301255747676_1335786441349 was not called
url: "/shops/560/login.json?api_token=some_token&customer[phone_number]=9988776655&customer[pin]=9876". I've seen instances where jQuery thinks it's querying an external server due to a port being specified. – Rory McCrossan Apr 30 '12 at 9:35dataType: "json",should bedataType: "jsonp",. – Anthony Grist Apr 30 '12 at 9:42