I am thinking 412 (Precondition Failed) but there may be a better standard?
|
I'm not sure there's a set standard, but I would have used
|
|||||||||||||||
|
|
Status 422 seems most appropiate based on the spec.
They state that malformed xml is an example of bad syntax (calling for a 400). A malformed query string seems analogous to this, so 400 doesn't seem appropriate for a well-formed query-string which is missing a param. |
|||||||||||
|
|
The WCF API in .NET handles missing parameters by returning an The Basically this would mean that the web service method you are calling, together with the parameter signature you specified, cannot be found.
The
|
|||||
|
|
|
You can send a 400 Bad Request code. It's one of the more general-purpose 4xx status codes, so you can use it to mean what you intend: the client is sending a request that's missing information/parameters that your application requires in order to process it correctly. |
|||
|
|
|
It could be argued that a |
||||
|
|
|
I often use a 403 Forbidden error. The reasoning is that the request was understood, but I'm not going to do as asked (because things are wrong). The response entity explains what is wrong, so if the response is an HTML page, the error messages are in the page. If it's a JSON or XML response, the error information is in there. From rfc2616:
|
|||||
|
|
For those interested, Spring MVC (3.x at least) returns a 400 in this case, which seems wrong to me. I tested several Google URLs (accounts.google.com) and removed required parameters, and they generally return a 404 in this case. I would copy Google. |
|||
|
|
|
I would go with a 403. From RFC 2616 - Hypertext Transfer Protocol -- HTTP/1.1
You should describe the reason of failure in your response. If you prefer not to do it, just use 404. |
|||
|
|