2012/8/17 Sahana Voleti <sahanasithmas...@gmail.com>: > Hello list, > > I am trying to upload really large files (size about 10GB) using > the Apache commons upload. I have followed the steps properly, increased > the java heap size and the maxPostSize in tomcat (I am using tomcat version > 7.0.29). Also I am using Windows XP , 2GB RAM machine. Here is what I have > observed: > a) Upload from Linux to Windows successful > b) Upload from Linux to Linux machine successful > c) Upload from Window to Window unsuccessful > d) Upload from Windows to Linux is unsuccessful > The Linux machine used is version 12.04 and Windows machines used are > Windows 7 Professional and Windows XP professional. > I am guessing this is a problem with using Windows machines as a client. > Kindly help me with this problem.
See this thread: http://tomcat.markmail.org/thread/6jxxcfg2s6rigl6w Short summary: 1. You must use a recent version of commons fileupload, or Servlet 3.0 file upload support available in Tomcat 7. 2. Most of browsers that I tested in April 2012 (on Windows) were broken and were sending invalid requests. At that time only Google Chrome was working correctly. You can add the following: "%{content-length}i" to your Access Log Valve configuration to log the Content-Length header of the incoming request. Regarding Mozilla Firefox, the issue has been closed recently (this month, August 2012), so the fix will be included in some upcoming version of it. https://bugzilla.mozilla.org/show_bug.cgi?id=215450 3. Some browsers looked as if they were trying to create the request in memory, which is quite troublesome for such big files. Best regards, Konstantin Kolinko --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org