Re: Does maxPostSize has an effect on file upload?

2012-12-14 Thread Kai Weber
* Mark Thomas : > >Does a file upload as multipart/form-data not count to the size of the > >POST? > > No, as the doc make clear. I asked because I could not find a hint in the docs or the INTERNET. What doc do you mean? I looked into http://tomcat.apache.org/tomcat-6.0-doc/config/http.html for

Does maxPostSize has an effect on file upload?

2012-12-13 Thread Kai Weber
I see the following behaviour on Tomcat 6.0.24: The maxPostSize is not set, so uses the default of 2MB. I can upload files bigger than 2MB (5MB for example). I use commons-fileupload to read the file. Does a file upload as multipart/form-data not count to the size of the POST? --