Re: multipart-formdata

2005-04-29 Thread Dakota Jack
> > no. i just wanted to know if i do request.getParameter("paramname") > within an Action for an ActionForm submitted as multipart-formdata would > i get the same result as for a normally submitted ActionForm

Re: multipart-formdata

2005-04-28 Thread rmanchu
bmitted as multipart-formdata would i get the same result as for a normally submitted ActionForm? there are no file uploads on the form riyaz - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: multipart-formdata

2005-04-28 Thread Dakota Jack
you are using the ActionForm and wondering what in the heck happened to your multipart request? Jack On 4/28/05, rmanchu <[EMAIL PROTECTED]> wrote: > > hi guys, > > long day today so am not thinking clearly :( > > if a multipart-formdata form was submitted, would

AW: multipart-formdata

2005-04-28 Thread Leon Rosenberg
Yes. Normally, you don't have to distinguish between POST and GET. leon > -Ursprüngliche Nachricht- > Von: rmanchu [mailto:[EMAIL PROTECTED] > Gesendet: Freitag, 29. April 2005 00:26 > An: Struts Users Mailing List > Betreff: multipart-formdata > > > hi

AW: multipart-formdata

2005-04-28 Thread Leon Rosenberg
Yes. Normally, you don't have to distinguish between POST and GET. leon > -Ursprüngliche Nachricht- > Von: rmanchu [mailto:[EMAIL PROTECTED] > Gesendet: Freitag, 29. April 2005 00:26 > An: Struts Users Mailing List > Betreff: multipart-formdata > > > hi

multipart-formdata

2005-04-28 Thread rmanchu
hi guys, long day today so am not thinking clearly :( if a multipart-formdata form was submitted, would a request.getParameter("paramname") return the correct values in an Action? the wrapper takes care of this right?