You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@commons.apache.org by David Liles <Da...@kcc.usda.gov> on 2004/11/12 21:18:56 UTC

fileupload problems

I am using the commons-fileupload jar in an application and am experiencing a stream termination error when in our production environment.

This same functionality works without problems on the local laptop where it is being developed, but once the code is moved to production 99% of the time we get an error. The odd thing is that after countless tests last night two of the test attempts worked but all of the others generated an error.

-- ERROR MESSAGE --
2004-11-11 21:58:34 StandardWrapperValve[action]: Servlet.service() for servlet action threw exception
org.apache.commons.fileupload.FileUploadException: Processing of multipart/form-data request failed. Stream ended unexpectedly

Is there a Tomcat setting that should be adjusted from the default regarding socket timeouts? I've set the following values in the <Connector> tag:   connectionTimeout="0" disableUploadTimeout="true" 

Our environment is Tomcat 5.0.x on a Windows 2000 server with JDK 1.4

Any ideas?

Thanks - David



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-user-help@jakarta.apache.org


Re: fileupload problems

Posted by Martin Cooper <mf...@gmail.com>.
The most likely problems I can think of are:

1) You're using the ISAPI redirector. In this case, you need to grab a
newer version. There was a bug in older versions that caused problems
such as the one you describe.

2) Something else is listening on the same port. This isn't likely,
since you're using Tomcat, which manages to detect that situation and
fails to start. (Some other web containers seem to start even if the
port is already in use.)

--
Martin Cooper


On Fri, 12 Nov 2004 14:18:56 -0600, David Liles
<da...@kcc.usda.gov> wrote:
> I am using the commons-fileupload jar in an application and am experiencing a stream termination error when in our production environment.
> 
> This same functionality works without problems on the local laptop where it is being developed, but once the code is moved to production 99% of the time we get an error. The odd thing is that after countless tests last night two of the test attempts worked but all of the others generated an error.
> 
> -- ERROR MESSAGE --
> 2004-11-11 21:58:34 StandardWrapperValve[action]: Servlet.service() for servlet action threw exception
> org.apache.commons.fileupload.FileUploadException: Processing of multipart/form-data request failed. Stream ended unexpectedly
> 
> Is there a Tomcat setting that should be adjusted from the default regarding socket timeouts? I've set the following values in the <Connector> tag:   connectionTimeout="0" disableUploadTimeout="true"
> 
> Our environment is Tomcat 5.0.x on a Windows 2000 server with JDK 1.4
> 
> Any ideas?
> 
> Thanks - David
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: commons-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: commons-user-help@jakarta.apache.org
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-user-help@jakarta.apache.org