Hi,
I'm using Tomcat as a servlet container for an application. I have to handle some file uploads. In the real context the aplication returns some errors sometimes, when somebody try to upload a big file :
19532165 [Thread-28] ERROR org.apache.struts.upload.CommonsMultipartRequestHandler - Failed to parse multipart request
org.apache.commons.fileupload.FileUploadException: Processing of multipart/form-data request failed. Read timed out
at org.apache.commons.fileupload.FileUpload.parseRequest(FileUpload.java:519)
at org.apache.commons.fileupload.FileUpload.parseRequest(FileUpload.java:355)
at org.apache.struts.upload.CommonsMultipartRequestHandler.handleRequest(CommonsMultipartRequestHandler.java:233)
at org.apache.struts.util.RequestUtils.populate(RequestUtils.java:1055)
.......................
.......................
The problem is I can't reproduce the error on my compter.
I've tried to find out where can I set Tomcat to wait a short time, but I haven't seen anything. I've tried to change in server.xml file in section :
<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
port="8080" minProcessors="5" maxProcessors="75"
enableLookups="true" redirectPort="8443"
acceptCount="100" debug="0" connectionTimeout="20000"
useURIValidationHack="false" disableUploadTimeout="true" />
<!-- Note : To disable connection timeouts, set connectionTimeout value
to -1 -->
with disableUploadTimeout="true" and connectionTimeout="200", but I didn't get the error.
Can somebody tell me where can I set the timeout for a FileUpload. I need an example please.
Thanks
Stefan
I'm using Tomcat as a servlet container for an application. I have to handle some file uploads. In the real context the aplication returns some errors sometimes, when somebody try to upload a big file :
19532165 [Thread-28] ERROR org.apache.struts.upload.CommonsMultipartRequestHandler - Failed to parse multipart request
org.apache.commons.fileupload.FileUploadException: Processing of multipart/form-data request failed. Read timed out
at org.apache.commons.fileupload.FileUpload.parseRequest(FileUpload.java:519)
at org.apache.commons.fileupload.FileUpload.parseRequest(FileUpload.java:355)
at org.apache.struts.upload.CommonsMultipartRequestHandler.handleRequest(CommonsMultipartRequestHandler.java:233)
at org.apache.struts.util.RequestUtils.populate(RequestUtils.java:1055)
.......................
.......................
The problem is I can't reproduce the error on my compter.
I've tried to find out where can I set Tomcat to wait a short time, but I haven't seen anything. I've tried to change in server.xml file in section :
<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
port="8080" minProcessors="5" maxProcessors="75"
enableLookups="true" redirectPort="8443"
acceptCount="100" debug="0" connectionTimeout="20000"
useURIValidationHack="false" disableUploadTimeout="true" />
<!-- Note : To disable connection timeouts, set connectionTimeout value
to -1 -->
with disableUploadTimeout="true" and connectionTimeout="200", but I didn't get the error.
Can somebody tell me where can I set the timeout for a FileUpload. I need an example please.
Thanks
Stefan