Re: [S2] File Upload Question

2007-06-04 Thread Jeromy Evans
Ken, Yes, the interface to your action is a File. The default implementation uses the ServletFileUpload servlet from apache-commons-fileupload which does create a temporary file. You can switch to other implementations or configurations by changing some struts2 properties but the fileupload i

[S2] File Upload Question

2007-06-04 Thread Hoying, Ken
As I am reading up and looking into the file upload support in S2, it appears that files are uploaded to a temporary area and then deleted when control is returned from the action. It would seem then that if I wanted to keep the file, that I then need to copy it again to somewhere else. Is this u