> Hello,
> I've been testing a simple ProxyServer to sit between Slide on Tomcat
and
> a client, and have noticed that when I delete a file I get a "HTTP/1.0 204
> No Content" send back from Slide instead of a "HTTP/1.1 207 Multi-Status"
> which I was excepting to receive and which is used in the example for the
> delete method in the WebDav RFC (RFC-2518). Is 204 code the correct
response
> or is slide sending back the wrong method header?
According to the spec (8.6.2), a 207 is returned when there is an error on a
resource other than the resource identified by the request URI.
It also states that 204 is the default status code. So when everything goes
well, I return 204 (which is consistent with what HTTP/1.1 does).
Remy