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 ...?

link|improve this question
Who is responsible for the web service? Can they not tell you which HTTP methods are supported for their service? – Paul Grime Feb 22 at 11:20
We are using same service in native code and getting result using POST method but it is not working in phonegap xui. Even soap ui is saying this service uses POST method. – mithilesh Feb 22 at 11:59
All I can suggest is that you compare the raw HTTP request from each and see what/if there are any differences. – Paul Grime Feb 22 at 12:02
Hey guys after lots of struggle i have solved this problem and written a blog for this kmithi.blogspot.in/2012/02/callling-web-services-in.html – mithilesh Feb 26 at 14:11
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.