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

When issuing an HTTP DELETE request, the request URI should completely identify the resource to delete. However, is it allowable to add extra meta-data as part of the entity body of the request?

share|improve this question
Mr Haack could you help me with the question at stackoverflow.com/q/7466370/632951 thx – Pacerier Sep 19 '11 at 5:34
1  
@PiotrDobrogost Haack is Haacked right? – Pacerier Sep 29 '11 at 1:35
@Pacerier I think so. – Piotr Dobrogost Sep 29 '11 at 9:45

5 Answers

up vote 76 down vote accepted

The spec does not explicitly forbid or discourage it, so I would tend to say it is allowed.

Microsoft sees it the same way (I can hear murmuring in the audience), they state in the MSDN article about the DELETE Method of ADO.NET Data Services Framework:

If a DELETE request includes an entity body, the body is ignored [...]


EDIT: I tried to compile a set of rules from the specification.

Here is what RFC2616 (HTTP 1.1) has to say in regard to requests:

  • an entity-body is only present when a message-body is present (section 7.2)
  • the presence of a message-body is signaled by the inclusion of a Content-Length or Transfer-Encoding header (section 4.3)
  • a message-body must not be included when the specification of the request method does not allow sending an entity-body (section 4.3)
  • an entity-body is explicitly forbidden in TRACE requests only, all other request types are unrestricted (section 9, and 9.8 specifically)

For responses, this has been defined:

  • whether a message-body is included depends on both request method and response status (section 4.3)
  • a message-body is explicitly forbidden in responses to HEAD requests (section 9, and 9.4 specifically)
  • a message-body is explicitly forbidden in 1xx (informational), 204 (no content), and 304 (not modified) responses (section 4.3)
  • all other responses include a message-body, though it may be of zero length (section 4.3)
share|improve this answer
4  
+1 Thanks. I was looking for clarification on this exact matter. Passing meta-data in the body seems intuitive to me for POST, PUT, and DELETE. – Jason McCreary Jan 4 '12 at 17:50
5  
@Jason Definitely. You could also use custom headers to pass additional data, but why not use the request body. – Tomalak Jan 6 '12 at 7:55
1  
Although the spec does not forbid DELETE requests from having a message-body, section 4.3 seems to indicate that the body should be ignored by servers since there are no "defined semantics" for DELETE entity-bodies: "A server SHOULD read and forward a message-body on any request; if the request method does not include defined semantics for an entity-body, then the message-body SHOULD be ignored when handling the request." – shelley Jan 9 at 23:49

Both Tomcat and Jetty seem to ignore a entity body if it is present. Which can be a nuisance if you intended to receive it.

share|improve this answer

It appears to me that RFC 2616 does not specify this.

From section 4.3:

The presence of a message-body in a request is signaled by the inclusion of a Content-Length or Transfer-Encoding header field in the request's message-headers. A message-body MUST NOT be included in a request if the specification of the request method (section 5.1.1) does not allow sending an entity-body in requests. A server SHOULD read and forward a message-body on any request; if the request method does not include defined semantics for an entity-body, then the message-body SHOULD be ignored when handling the request.

And section 9.7:

The DELETE method requests that the origin server delete the resource identified by the Request-URI. This method MAY be overridden by human intervention (or other means) on the origin server. The client cannot be guaranteed that the operation has been carried out, even if the status code returned from the origin server indicates that the action has been completed successfully. However, the server SHOULD NOT indicate success unless, at the time the response is given, it intends to delete the resource or move it to an inaccessible location.

A successful response SHOULD be 200 (OK) if the response includes an entity describing the status, 202 (Accepted) if the action has not yet been enacted, or 204 (No Content) if the action has been enacted but the response does not include an entity.

If the request passes through a cache and the Request-URI identifies one or more currently cached entities, those entries SHOULD be treated as stale. Responses to this method are not cacheable.c

So it's not explicitly allowed or disallowed, and there's a chance that a proxy along the way might remove the message body (although it SHOULD read and forward it).

share|improve this answer

The latest update to the HTTP 1.1 spec explicitly permits entity body in DELETE request. Refer This

share|improve this answer
the latest un-approved version of the spec removes this requirement. The latest approved version is still the RFC2616 quoted above. – BishopZ Aug 25 '12 at 0:01
1  
Which version? Version 20 still has the same wording as version 19 I linked above: "Bodies on DELETE requests have no defined semantics. Note that sending a body on a DELETE request might cause some existing implementations to reject the request." – grzes Oct 3 '12 at 22:19

It seems ElasticSearch uses this: http://www.elasticsearch.org/guide/reference/api/delete-by-query/

Which means Netty support this.

share|improve this answer

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.