Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Restlet 2.1 with jackson to build a json REST api.

When I make a request with the expected content type but a malformed body, I get back a 415 "Unsuppored Media Type" status code. I think the correct error code should be 400 "Bad Request".

Apparently the mixup happens when Jackson tries and fails to decode the garbage.

I'll try to make the case more clear with some code:

// java method mapping
@Post("json")
public Project create(Project project) {

The service invocation with curl

$ curl -i -XPOST -H 'content-type: application/json' -d '{xgarbage}' http://localhost:8080/projects HTTP/1.1 415 Unsupported Media Type

And a fragmente of the stack trace os recorde in the logs:

Nov 29, 2010 9:51:56 PM org.restlet.ext.jackson.JacksonRepresentation getObject
WARNING: Unable to parse the object with Jackson.
org.codehaus.jackson.JsonParseException: Unexpected character ('x' (code 120)): expected a valid value (number, String, array, object, 'true', 'false' or 'null')
 at [Source: java.io.ByteArrayInputStream@693e4a5a; line: 1, column: 2]
at org.codehaus.jackson.JsonParser._constructError(JsonParser.java:929)

The actual implementation of the service is never hit, so somewhere a decision is made to map the garbled content to a 415.

Now, my question is: is this correct? If I'm reading correctly the following quotes from the book "RESTful Web Services", it is not, but I'm open to corrections.

[400 Bad Request] It’s commonly used when the client submits a representation along with a PUT or POST request, and the representation is in the right format, but it doesn’t make any sense.

.

[415 Unsupported Media Type] If the client sends a document that’s got the right media type but the wrong format (such as an XML document written in the wrong vocabulary), a better response is the more generic 400 (“Bad Request”)

Right or wrong, I'd prefer to return a 400.

Is there a way to change the behaviour without renouncing at the auto-magic serialisation provided by Jackson?

Any help is greatly appreciated, thanks!

share|improve this question

1 Answer

415 is correct, as the request is NOT in the right format if it is corrupted in anyway. For example non-parseable JSON or XML. Malformed JSON or XML is NOT JSON or XML by definition, and thus is an unsupported media type, there is no way for Jackson to know that is is supposed to be JSON, it just knows that it isn't JSON that it can parse.

The offical documentation is really clear about this.

10.4.16 415 Unsupported Media Type

The server is refusing to service the request because the entity of the request is in a format not supported by the requested resource for the requested method.

you said, hey this is JSON, and it isn't so the server says, hey, what I got isn't JSON and not supported by this resource.

share|improve this answer
2  
I guess this is arguable: being in a format and being well-formatted are two different things (you can have a corruped jpg). I think the server should signal differently "hey you tried to send apllication/foo and I don't support it", and "yes we do support json but your data is corrupted". – Matteo Caprari Nov 30 '10 at 16:30
how is a parser supposed to know something is json but corrupted, that is like a jpg decoder saying this is a jpg but corrupted, that makes no sense, all a decoder or parser can say is I tried to parse this as something and it was unparseable, a blob of bits that can't be decoded to an image are not jpgs any more than a non blob of text is json if it can't be parsed as such. – Jarrod Roberson Nov 30 '10 at 19:41
1  
Well, that's what the Content-Type http header is for: it declares the intended content type. If the sender declares it's json, but the decoder can't decode it as such, then it's a bad request because it makes no sense. It's not a bad media type (because the intended media type would have been good). – Matteo Caprari Nov 30 '10 at 21:43
the key is "...in a format not supported by the requested resource for the requested method" corrupted input meets this requirement. – Jarrod Roberson Dec 1 '10 at 20:13
1  
that fact that is corrupt is irrelevant, the parser doesn't know if it is the wrong format or just a corrupt format either way it is malformed from the parsers viewpoint. Software is dumb that way. 400 if for malformed syntax, this implies something semantically different than corruption. – Jarrod Roberson Dec 13 '11 at 23:54
show 1 more comment

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.