|
2 |
edited tags
|
||
|
1 |
|
||
What is the correct response to an HTTP POST request?For a POST method, the W3 specs say:
http://www.ietf.org/internet-drafts/draft-ietf-httpbis-p2-semantics-05.txt (section 8.5) The standard response actually seems to be to send a Redirect to the newly created resource. I'm building my site with ASP.NET MVC, and tried to follow the spec, so created a
And my action looks something like this:
However, IE, Firefox and Chrome all fail to redirect to the new resource. Have I messed up generating the correct response, or do web browsers not expect this type of response, instead relying on servers to send a Redirect response?
|
||||
