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 have a WCF Service that is expecting a POST. Using Fiddler I discovered that in cross-domain situations, my POST request was getting changed to a GET which results in error 405 from server.

$.ajax({
    type: "POST",
    url: "http://blah/blah.svc/Test",
    data: JSON.stringify("{ 'WebUserID': 4 }"),
    dataType: "jsonp",  // from server
    contentType: "application/json; charset=utf-8", // to server
    success: function (data, status, xhr) {
        alert("success--");
    }
});

Can anyone shed some light on this?

Thanks

share|improve this question
1  
This isn't really a duplicate, but the answer answers this question: stackoverflow.com/questions/2699277/post-data-to-jsonp – lonesomeday May 9 '12 at 17:32

2 Answers

There's no POST and JSONP. JSONP works by creating a new script tag in the DOM which sends a GET request to the server. You're giving jQuery.ajax two incompatible parameters (POST, jsonp), and jQuery is choosing one over the other.

One update: you can use something like CORS (Cross-Origin Resource Sharing) to enable non-GET requests to cross-domain services. WCF doesn't support it out-of-the-box, but I wrote a post about implementing it in WCF at http://blogs.msdn.com/b/carlosfigueira/archive/2012/05/15/implementing-cors-support-in-wcf.aspx.

share|improve this answer

It's converting it to GET because you no longer have a name/value pair after doing the JSON.stringify; you just have a string. POST requires a name/value pair.

share|improve this answer
Don't JSON.stringify your data unless you're meaning to pass a serial representation of an object. – Jonathan M May 9 '12 at 17:39
He shouldn't stringify, but not because of what you mentioned. The parameter to stringify is already "stringified", it's not a JS object (it's a string). Stringifying will double-encode it, which will fail. – carlosfigueira May 9 '12 at 18:34
And to send the data in a POST request, he actually needs to pass a serialized version of the object (in the request body). – carlosfigueira May 9 '12 at 18:35
Yes. I think what he actually meant to do was: data: { WebUserId: 4 },. That's what I was trying to say. – Jonathan M May 9 '12 at 18:39
This was a simplification of what I'm really doing. I do mean to send a serialized object. However, I can find no version that works. Can someone suggest an example? – nuander May 9 '12 at 19:04
show 4 more comments

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.