Multipart request

2006-08-30 Thread Raghuveer
What are best practices in using Multipart request for file uploads using struts - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: multipart request issues

2005-07-28 Thread Laurie Harper
Carl Smith wrote: I am having issues to get the request parameters from a multipart request, le me explain my problem first: Our flow of process is: (1) a multipart request is submitted to a struts action (let's say updateTableAction.do) using POST (2) the multipart request is process

RE: multipart request issues

2005-07-28 Thread Paul McCulloch
ly 2005 15:38 > To: user@struts.apache.org > Subject: multipart request issues > > > > I am having issues to get the request parameters from a > multipart request, le me explain my problem first: > > Our flow of process is: > > (1) a multipart request is submitted to a str

multipart request issues

2005-07-28 Thread Carl Smith
I am having issues to get the request parameters from a multipart request, le me explain my problem first: Our flow of process is: (1) a multipart request is submitted to a struts action (let's say updateTableAction.do) using POST (2) the multipart request is process

IE File Names in Multipart Request: file uploads

2005-04-10 Thread Dakota Jack
IE, somewhat incredibly, gives the absolute path as the file name in multipart requests. Commons file upload does not take action to make sure that the differing browsers give the same file name. Does the Struts upload package do something to keep this straight? Thanks. Jack -- "You can lead

Reading parameters from a multipart request in a custom tag

2005-03-24 Thread Paul McCulloch
I'm trying to access the request parameters (i.e. submitted form values) in a custom tag. This is fine with 'normal' forms but with multipart forms (enctype="multipart/form-data") this isn't working. The code in the custom tag does, in essence, what the RequestProcessor does - calls org.apache.com