Hi,I'm having problemas using apache 2.4.4.2 with webdav module.For some reason, it closes the connection before sending the HTML response from the webdav module.On my old servers using apache 2.0.59, it does not happen.Bellow i send the curl results.Anyone having the same issue?I tested using apache 2.4.4.2 and 2.4.4.3, and both presented the same problem.Apache 2.0.59[root@aserver lrojo]# curl -I -T /etc/passwd http://url/0/teste60 --verbose * About to connect() to url port 80 (#0) * Trying 10.129.138.57... connected * Connected to url (10.129.138.57) port 80 (#0) > PUT /0/teste60 HTTP/1.1 > User-Agent: curl/7.19.7 (x86_64-unknown-linux-gnu) libcurl/7.19.7 NSS/3.12.7.0 zlib/1.2.3 libidn/1.18 libssh2/1.2.2 > Host: url > Accept: */* > Content-Length: 11795 > Expect: 100-continue > < HTTP/1.1 100 Continue HTTP/1.1 100 Continue < HTTP/1.1 201 Created HTTP/1.1 201 Created < Date: Fri, 16 Aug 2013 00:00:20 GMT Date: Fri, 16 Aug 2013 00:00:20 GMT < Server: Apache/2.0.59 (Unix) DAV/2 Server: Apache/2.0.59 (Unix) DAV/2 < Location: http://url/0/teste60 Location: http://url/0/teste60 < Cache-Control: max-age=2592000, public Cache-Control: max-age=2592000, public < Expires: Fri, 16 Aug 2013 00:00:20 GMT Expires: Fri, 16 Aug 2013 00:00:20 GMT < X-Content-Type-Options: nosniff X-Content-Type-Options: nosniff < Pragma: no-cache Pragma: no-cache < Pragma: no-store Pragma: no-store < Content-Length: 182 Content-Length: 182 < Connection: close Connection: close < Content-Type: text/html Content-Type: text/html < <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>201 Created</title> </head><body> <h1>Created</h1> <p>Resource /0/teste60 has been created.</p> </body></html> * Closing connection #0 Apache 2.4 [root@a2-zencodex1 lrojo]# curl -I -T /etc/passwd http://url/0/teste60 --verbose * About to connect() to url port 80 (#0) * Trying 10.129.138.73... connected * Connected to url (10.129.138.73) port 80 (#0) > PUT /0/teste60 HTTP/1.1 > User-Agent: curl/7.19.7 (x86_64-unknown-linux-gnu) libcurl/7.19.7 NSS/3.12.7.0 zlib/1.2.3 libidn/1.18 libssh2/1.2.2 > Host: url > Accept: */* > Content-Length: 11795 > Expect: 100-continue > < HTTP/1.1 100 Continue HTTP/1.1 100 Continue < HTTP/1.1 201 Created HTTP/1.1 201 Created < Date: Thu, 15 Aug 2013 23:59:47 GMT Date: Thu, 15 Aug 2013 23:59:47 GMT < Server: Apache Server: Apache < Location: http://url/0/teste60 Location: http://url/0/teste60 < Cache-Control: max-age=2592000, public Cache-Control: max-age=2592000, public < Expires: Thu, 15 Aug 2013 23:59:47 GMT Expires: Thu, 15 Aug 2013 23:59:47 GMT < X-Content-Type-Options: nosniff X-Content-Type-Options: nosniff < Pragma: no-cache Pragma: no-cache < Pragma: no-store Pragma: no-store < Content-Length: 71 Content-Length: 71 < Content-Type: text/html; charset=ISO-8859-1 Content-Type: text/html; charset=ISO-8859-1 < <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> * Connection #0 to host url left intact * Closing connection #0Thanks in advance!