https://issues.apache.org/bugzilla/show_bug.cgi?id=56725
Konstantin Kolinko <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #7 from Konstantin Kolinko <[email protected]> --- > 127.0.0.1 - - [16/Jul/2014:13:50:39 +0000] "HEAD > /management/api/storage/fileManagement/article/conflictApp/a57f597a-bb7f-4221-8097-e4d9222c61cd > HTTP/1.1" 401 - > 127.0.0.1 - - [16/Jul/2014:13:50:39 +0000] "HEAD > /management/api/storage/fileManagement/article/conflictApp/a57f597a-bb7f-4221-8097-e4d9222c61cd > HTTP/1.1" 200 - The above means that the request is sent twice. The first request fails and asks for authentication. To upload an 1Gb file you have to to configure your HTTP Client to either preemptively send correct credentials with the first request, or use Expect: 100-continue header. If you have not done either of the above options, the fallback behaviour is to upload the same file twice. Tomcat 8.0.9 protects from such wasting of bandwidth and aborts connection. The size limit is configurable on <Connector> if one really wants it. See also bug 56693 for a known WebDAV / resource cache issue. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
