Struts 1 - Problem regarding uploading large files

2010-01-26 Thread Virajith KHP
Hi friends, I have encountered an unusual behaviour with respect to file upload capability in Struts 1 application. I have configured the max upload file size limit using the tag in struts configuration file as follows. Struts uses common fileupload library to handle file uploading functional

Re: Uploading large files

2009-08-05 Thread Daniele Development-ML
rdite. Ce message sert à l'information seulement et n'aura > pas n'importe quel effet légalement obligatoire. Étant donné que les email > peuvent facilement être sujets à la manipulation, nous ne pouvons accepter > aucune responsabilité pour le contenu fourni. > > > &g

RE: Uploading large files

2009-08-05 Thread Martin Gainty
t facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. > Date: Wed, 5 Aug 2009 15:49:58 +0100 > Subject: Re: Uploading large files > From: daniele@googlemail.com > To: user@struts.apache.org > > Hi All, > I posted a

Re: Uploading large files

2009-08-05 Thread Daniele Development-ML
Hi All, I posted an email concerning the uploading of large files and on the streaming of them into the local HD or database - this email should fall in the same thread. Now, always using Struts 1.3 with the Common File API, I'm uploading and downloading a 1.5 Gb through the web interface and I'm

Re: Uploading large files

2009-07-14 Thread Dale Newfield
Daniele Development-ML wrote: 3. Went to the FAQ section to see how I could integrate in my Struts application ( http://commons.apache.org/fileupload/faq.html ), and read the last point - from which I assumed Struts doesn't use this modality. Those two FAQs are related to Struts1, not Struts2.

Re: Uploading large files

2009-07-14 Thread Wes Wannemacher
There is a pretty good information here - http://struts.apache.org/2.x/docs/file-upload.html The internal details are relatively non-complex. The dispatcher hands file uploads off to this class - http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/m

Re: Uploading large files

2009-07-14 Thread Daniele Development-ML
Hello, my process in getting to this was 1. looking for some API to stream upload/download data directly into the HD, 2. found the Common File Upload API, 3. Went to the FAQ section to see how I could integrate in my Struts application ( http://commons.apache.org/fileupload/faq.html ), and read the

Re: Uploading large files

2009-07-13 Thread Wes Wannemacher
On Mon, Jul 13, 2009 at 4:34 PM, Dale Newfield wrote: > >> I remember once I came across another possible solution, which allows the >> serialization of the file data as it is received from the server. > > I assume that the multipart request processor streams the content into a > file without first

Re: Uploading large files

2009-07-13 Thread Dale Newfield
Daniele Development-ML wrote: I am developing a web application that needs to allow uploading of file of sizes ranging 200Mb - 1 GB. My current app allows for files up to 1GB. Currently, I'm doing this with the FileUploadAction, which however loads the entire file in memory - as I understood

Uploading large files

2009-07-13 Thread Daniele Development-ML
Hello, I am developing a web application that needs to allow uploading of file of sizes ranging 200Mb - 1 GB. Currently, I'm doing this with the FileUploadAction, which however loads the entire file in memory - as I understood I remember once I came across another possible solution, which allows t