I am using xui a phonegap plug in to consume web services. It is working fine with get request but when i am giving post request. Its always calling error function. I am using following code -
x$.data = {};
x$("#play_1").xhr((url),{ method:'post',
error: function(){alert("failed")},
callback: function(){
alert("web service completed");
var status = eval("("+this.responseText+")").status;
localStorage.setItem("state", status);
x$("#returned_information").html(status);
}
});
}
I am getting error code as 405 message = "The specified HTTP method is not allowed for the requested resource" Can any one help me ... its urgent .... please
Hey guys same code is working on android but not working on iOS. I am not getting why? can any one help me ...?