You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Component Overview

[http://jakarta.apache.org/commons/fileupload Commons-FileUpload] makes it easy to add robust, high-performance, file upload capability to your servlets and web applications.

A lot of information is available on the [http://jakarta.apache.org/commons/fileupload/ FileUpload website]. If you don't find the information you need you can always contact us using one of the [http://jakarta.apache.org/site/mail2.html#Commons mailing lists].

External Resources

If you have a good example, add it here!

FAQ

Add your questions/answers here.

Q: Very often when we try to upload a file (several types such as jpeg, ppt etc.) we get an error message from Internet-Explorer "page cannot be displayed"

Not always but very often (absolutely not reliable). We don't see any error messages, neither in apache nor in tomcat (as if there had been no request at all).

Apache is configured to redirect all non-SSL request to SSL, but I think that shouldn't cause any problems because that happens only once (the user must first log-in, then go through several dialogs before he can upload, thus the redirection is done much earlier).

Except that, everything is very stable.

Any ideas?

A: The reason was Internet Explorer needs the following in Apache:

[SetEnvIf] User-Agent ".*MSIE.*" [BR]
nokeepalive ssl-unclean-shutdown [BR]
downgrade-1.0 force-response-1.0

Zsolt

  • No labels