2013/8/25 Lieven Govaerts <lieven.govae...@gmail.com>: > Summarising our investigation: > 1. The error that Johan receives is caused by the body of a 501 Method > Not Implemented response (see [1]) being directly appended to a > response to a GET request. > 2. The request that triggered this response is this: DAV: > http://subversion.tigris.org/xmlns/dav/svn/log-revprops > So apache thinks the request method is "DAV:" and returns the error. > It's not clear to me why apache doesn't send a status line but just > the html body of the 501 response, but that's not really the cause of > this particular issue.
I guess that the server considers this request as HTTP/0.9 as that line consists of two tokens http://www.w3.org/Protocols/HTTP/AsImplemented.html An HTTP/0.9 response is just the requested document, without any status line or headers. Best regards, Konstantin Kolinko