RE: Struts File Upload Issue

2011-05-27 Thread Martin Gainty
eine Haftung fuer den Inhalt uebernehmen. > From: jpye...@pdinc.us > To: user@struts.apache.org > Subject: RE: Struts File Upload Issue > Date: Fri, 27 May 2011 07:06:23 -0400 > > > -Original Message- > > From: vijayaraja...@cognizant.com > > [mailto:v

RE: Struts File Upload Issue

2011-05-27 Thread Jason Pyeron
> -Original Message- > From: vijayaraja...@cognizant.com > [mailto:vijayaraja...@cognizant.com] > Sent: Friday, May 27, 2011 6:58 > To: user@struts.apache.org > Subject: RE: Struts File Upload Issue > > Hi Alejandro, > > It sometimes happens even for very

RE: Struts File Upload Issue

2011-05-27 Thread VijayaRajan.S
Hi Alejandro, It sometimes happens even for very small files. Regards, Vijayarajan S -Original Message- From: Alejandro García Gil [mailto:alejandro.garcia@gmail.com] Sent: Friday, May 27, 2011 11:51 AM To: Struts Users Mailing List Subject: Re: Struts File Upload Issue Have you

Re: Struts File Upload Issue

2011-05-26 Thread Alejandro García Gil
Have you exceeded the maximum size of the file? 2011/5/26 Paweł Wielgus > Hi, > maybe validation is not permitting action to be called in this situations? > > Best gretings, > Paweł Wielgus. > > > 2011/5/26 : > > Hi, > > > > > > > > I have a query regarding file upload functionality in Struts.

RE: Struts File Upload Issue

2011-05-26 Thread Martin Gainty
pie de ceci est interdite. 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. > Subj

RE: Struts File Upload Issue

2011-05-26 Thread VijayaRajan.S
jay S -Original Message- From: Aaron Brown [mailto:aa...@thebrownproject.com] Sent: Thursday, May 26, 2011 3:23 PM To: Struts Users Mailing List Subject: Re: Struts File Upload Issue Are you certain the action class is not being called at all? Are you logging when the action method execut

Re: Struts File Upload Issue

2011-05-26 Thread Aaron Brown
Are you certain the action class is not being called at all? Are you logging when the action method executes to be sure? Is your user a Mac user? I have seen occasional problems with Mac files (especially fonts) having a null data fork that break the upload process. On May 26, 2011 1:01 AM, wrot

RE: Struts File Upload Issue

2011-05-26 Thread VijayaRajan.S
: Thursday, May 26, 2011 12:32 PM To: Struts Users Mailing List Subject: Re: Struts File Upload Issue Hi, maybe validation is not permitting action to be called in this situations? Best gretings, Paweł Wielgus. 2011/5/26 : > Hi, > > > > I have a query regarding file upload f

Re: Struts File Upload Issue

2011-05-26 Thread Paweł Wielgus
Hi, maybe validation is not permitting action to be called in this situations? Best gretings, Paweł Wielgus. 2011/5/26 : > Hi, > > > > I have a query regarding file upload functionality in Struts. I am > having a screen from where I can upload multiple files. When files are > browsed and submit

Re: Struts file upload issue

2008-11-30 Thread Dave Newton
--- On Sun, 11/30/08, Shazad wrote: > Did you get a chance to look at the file dropping on the validaton issue. Nope. Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Struts file upload issue

2008-11-30 Thread Shazad
Hi Dave, Did you get a chance to look at the file dropping on the validaton issue. Please reply. Thanks On Sat, Nov 29, 2008 at 8:19 PM, Dave Newton <[EMAIL PROTECTED]> wrote: > Yeah, I think you'd have to tweak something to create that change. > > If I have time tomorrow I'll take a quick loo

Re: Struts file upload issue

2008-11-29 Thread Dave Newton
Yeah, I think you'd have to tweak something to create that change. If I have time tomorrow I'll take a quick look as well. Dave --- On Sat, 11/29/08, Khawaja-Shahzad Butt <[EMAIL PROTECTED]> wrote: > But i don't see any option in the file interceptor to > store the file > temporarily. This issu

Re: Struts file upload issue

2008-11-29 Thread Khawaja-Shahzad Butt
Thanks for the reply. But i don't see any option in the file interceptor to store the file temporarily. This issue behaves the same way in IE and FF(Firefox). It would be great to have the file attached while there's a validation error so that the user doesn't have to reattach it. I am sure some

Re: Struts file upload issue

2008-11-29 Thread Dave Newton
AFAIK it's a browser issue; it won't keep the file name in the file select box. I haven't looked, but it might be possible to save the file anyway, though, via interceptor ordering or an interceptor modification--not sure. Dave --- On Sat, 11/29/08, Khawaja-Shahzad Butt <[EMAIL PROTECTED]> wro

Re: [struts] file upload exception

2007-09-14 Thread Session A Mwamufiya
The upload is named "upload", and the button is "importButton". I'm not sure why there's a conflict there. I added the action context cleanup filter in my web.xml file, but that didn't change anything. One thing I see in my server log is the FileUploadInterceptor that removes the file: 15:08:

Re: [struts] file upload exception

2007-09-14 Thread Dale Newfield
Session A Mwamufiya wrote: You're right about the button, that's what gets put in the file. Could it be that you've named the upload the same as the button, so there are two parameters sent up with the same name, one of which masks the other? -Dale -

Re: struts file upload problem

2005-05-07 Thread Adam Hardy
On 04/05/05 22:40 temp temp wrote: I can upload files of size 1 Gb from localhost but not from network so I guess problem is not related to container upload limit as I did upload 1 Gb file from localhost .I am not able to do this from network however I was able to upload small files from netwo

Re: struts file upload

2005-05-06 Thread Woodchuck
hihi, what application server are you using? and are you forwarding requests from a web server to your application server (eg. apache/IIS --> tomcat)? woodchuck --- temp temp <[EMAIL PROTECTED]> wrote: > I am using struts and trying to upload files of any > type and size.If the server as well

Re: struts file upload

2005-05-06 Thread Dakota Jack
If you look into the basics of the URL framework in Java, you can see it is fairly easy to add support for new protocols and content types. The engineers at Sun, planning for a self-extensible browser, divided the problem into protocol handling and content handling. Handling the protocol means ma

Re: struts file upload

2005-05-04 Thread Dakota Jack
You might want to build your own file upload application off of commons or cos. The Struts application is not particularly sophisticated. However, if you do, then you have to build your own objects to mine the data, because Struts has tied the internals of the RequestProcessor to the upload appli

Re: struts file upload

2005-05-04 Thread Martin Gainty
Miro Check out JavaZoom UploadBean at http://www.javazoom.net/jzservlets/uploadbean/uploadbean.html HTH, Martin- - Original Message - From: "temp temp" <[EMAIL PROTECTED]> To: Sent: Wednesday, May 04, 2005 8:09 PM Subject: struts file upload I am using struts and trying to upload files

Re: struts file upload problem

2005-05-04 Thread temp temp
I can upload files of size 1 Gb from localhost but not from network so I guess problem is not related to container upload limit as I did upload 1 Gb file from localhost .I am not able to do this from network however I was able to upload small files from network . sairam --- Dave Newton <[EMA

Re: struts file upload problem

2005-05-04 Thread Dave Newton
temp temp wrote: No there is no limit for file upload as per commons fileupload. The server or container might have an upload limit, for intance Apache has (or did, anyway) "LimitRequestBody" config. Dave - To unsubscribe,

RE: struts file upload problem

2005-05-04 Thread temp temp
No there is no limit for file upload as per commons fileupload. I guess there should be some setting with the server for connection time out or something I am using websphere 5.0 can you guide me . --- Folashade Adeyosoye <[EMAIL PROTECTED]> wrote: > 1 GB is Huge to upload, isn't the

RE: struts file upload problem

2005-05-04 Thread Folashade Adeyosoye
1 GB is Huge to upload, isn't there alimit? I thought there was -Original Message- From: temp temp [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 04, 2005 4:20 PM To: user@struts.apache.org Subject: struts file upload problem I am using struts to upload a file . It works fine with small

Re: Struts, file upload, Websphere 5.0.1 'Read timed out'

2004-12-09 Thread Chad Lauritsen (Struts User)
Sean, Is there a proxy server involved in the upload request? csl Sullivan, Sean C - MWT said: > > I am using Struts 1.1 in Websphere 5.0.1 > > I am trying to use Struts' FormFile feature to receive an uploaded file. > > The file upload is failing due to a "Read timed out" error. The error > o

RE: Struts File-Upload performance issue

2004-05-10 Thread Kathy Zhou
/uploadbean.html For your info, Kathy -Original Message- From: Daniel Kalcevich [SMTP:[EMAIL PROTECTED] Sent: Monday, May 10, 2004 1:25 PM To: Struts Users Mailing List Subject:RE: Struts File-Upload performance issue There is a package called edtFTPj that allows you to perform

RE: Struts File-Upload performance issue

2004-05-10 Thread Kathy Zhou
/uploadbean.html For your info, Kathy > -Original Message- > From: Daniel Kalcevich [SMTP:[EMAIL PROTECTED] > Sent: Monday, May 10, 2004 1:25 PM > To: Struts Users Mailing List > Subject: RE: Struts File-Upload performance issue > > There is a package called edtFT

RE: Struts File-Upload performance issue

2004-05-10 Thread Daniel Kalcevich
] Sent: Monday, May 10, 2004 10:14 AM To: 'Struts Users Mailing List' Subject: RE: Struts File-Upload performance issue Jacob, I agree with you. I do not think this is a struts issue. Java is not a good tool for large file uploading. We run into the similar issue before. We built a web

RE: Struts File-Upload performance issue

2004-05-10 Thread Kathy Zhou
like to know if anybody has further comments on it. Thanks, Kathy -Original Message- From: Hookom, Jacob [SMTP:[EMAIL PROTECTED] Sent: Monday, May 10, 2004 12:18 PM To: 'Struts Users Mailing List' Subject: RE: Struts File-Upload performance issue Yeah, FTP is the

Re: Struts File-Upload performance issue

2004-05-10 Thread Richard Yee
Ralf, What is the speed of your connection? What is the speed of the client's connection? How fast is your server? What is the load on the server? You need to consider those questions before pinning the problem on the Struts file upload. Regards, Richard --- Ralf Alt <[EMAIL PROTECTED]> wrote: >

RE: Struts File-Upload performance issue

2004-05-10 Thread Hookom, Jacob
: Struts Users Mailing List Subject: Re: Struts File-Upload performance issue You need to store 1GB files in a database? Yea, so good luck with that ;) On Monday 10 May 2004 08:07 am, Ralf Alt wrote: > Hallo, > > I'm using the struts file upload with Struts Version 1.1. > > If

Re: Struts File-Upload performance issue

2004-05-10 Thread Mark Lowe
If its an upload what speeds do you get using ftp as a comparison ? Sure once its uploaded saving to the db may not be very long, slowest part is always going to be the network. On 10 May 2004, at 17:07, Ralf Alt wrote: Hallo, I'm using the struts file upload with Struts Version 1.1. If I try

Re: Struts File-Upload performance issue

2004-05-10 Thread Riyad Kalla
You need to store 1GB files in a database? Yea, so good luck with that ;) On Monday 10 May 2004 08:07 am, Ralf Alt wrote: > Hallo, > > I'm using the struts file upload with Struts Version 1.1. > > If I try to upload big files there is a performance problem. For a file of > 40Mb the upload needs ab

Re: struts file upload strange error

2004-05-04 Thread Martin Cooper
"John Moore" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > At 01:13 04/05/2004, Bryan Hunt wrote: > > >Dude, send me your address and I will fed-ex you a cold beer > >!! > >I should have thought of that before. Thanks for your help I've > >j

Re: struts file upload strange error

2004-05-04 Thread John Moore
At 01:13 04/05/2004, Bryan Hunt wrote: Dude, send me your address and I will fed-ex you a cold beer !! I should have thought of that before. Thanks for your help I've just wasted 24 hours on this If I was running linux I could have ran a packet captur

Re: struts file upload strange error

2004-05-03 Thread Richard Yee
darn! I knew I should have answered this one! -R Dude, send me your address and I will fed-ex you a cold beer !! I should have thought of that before. Thanks for your help I've just wasted 24 hours on this If I was running linux I could have ran a pack

Re: struts file upload strange error

2004-05-03 Thread Bryan Hunt
Dude, send me your address and I will fed-ex you a cold beer !! I should have thought of that before. Thanks for your help I've just wasted 24 hours on this If I was running linux I could have ran a packet capture but am on crappy win 2000 box. --B

Re: struts file upload strange error

2004-05-03 Thread Martin Cooper
It's not a Struts bug, and it's not even a Struts-related problem. Any time you need to upload files, you must use a POST request with an 'enctype' of "multipart/form-data". Your form element should look like this: -- Martin Cooper "Bryan Hunt" <[EMAIL PROTECTED]> wrote in message news:[EMAIL