RE: Why this does not work?

2006-10-16 Thread David Friedman
might work but it won't look that pretty inside your setter/getter. Regards, David -Original Message- From: Walter do Valle [mailto:[EMAIL PROTECTED] Sent: Monday, October 16, 2006 4:16 PM To: Struts Users Mailing List Subject: Re: Why this does not work? Ok. Thank you David. I alr

Re: Why this does not work?

2006-10-16 Thread Walter do Valle
Sent: Monday, October 16, 2006 3:25 PM To: Struts Users Mailing List Subject: Re: Why this does not work? Walter- You need to identify an ActionForm and work up from there heres a link to get you started http://www.roseindia.net/struts/strutsfileupload.shtml your To: "Struts Users Mailing L

Re: Why this does not work?

2006-10-16 Thread Martin Gainty
Valle" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Monday, October 16, 2006 3:50 PM Subject: Re: Why this does not work? > Ok... ok... Thank you. > > But your example is very simple. Upload one single file is an easy job. > The problem is how to upload

Re: Why this does not work?

2006-10-16 Thread Walter do Valle
, October 16, 2006 3:01 PM Subject: Why this does not work? In Struts 1.1 I used something like that to Upload multiple files (undefined number of files). Why does't this work anymore? public class ConcatenarForm extends ActionForm { private FormFile[] arquivo; public FormFile

RE: Why this does not work?

2006-10-16 Thread David Friedman
which you've defined in your ActionForm. It must be accessed with indexes: Regards, David -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Monday, October 16, 2006 3:25 PM To: Struts Users Mailing List Subject: Re: Why this does not work? Walter- You ne

Re: Why this does not work?

2006-10-16 Thread Martin Gainty
Walter- You need to identify an ActionForm and work up from there heres a link to get you started http://www.roseindia.net/struts/strutsfileupload.shtml your To: "Struts Users Mailing List" Sent: Monday, October 16, 2006 3:01 PM Subject: Why this does not work? > In Stru

Why this does not work?

2006-10-16 Thread Walter do Valle
In Struts 1.1 I used something like that to Upload multiple files (undefined number of files). Why does't this work anymore? public class ConcatenarForm extends ActionForm { private FormFile[] arquivo; public FormFile[] getArquivo() { return arquivo; } public void setArq