RE: Loosing my parameter in the multipart request

2002-11-19 Thread Murray, Christopher
a shame that it still isn't sorted out !! -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: 19 November 2002 15:43 To: Struts Users Mailing List Subject: RE: Loosing my parameter in the multipart request Did you have any luck with the (ugly) workaround I sugge

RE: Loosing my parameter in the multipart request

2002-11-19 Thread Murray, Christopher
Thanks Andrew that spells it out nicely. Going for manual reset. -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: 19 November 2002 13:51 To: Struts Users Mailing List Subject: RE: Loosing my parameter in the multipart request The multipart request is indeed a

Re: Loosing my parameter in the multipart request

2002-11-19 Thread Martin Cooper
On Tue, 19 Nov 2002, Murray, Christopher wrote: > Hey there guys n gals, > > I seem to be loosing a parameter of my request when I submit a multi-part > form. Yes, this is a bug. A fix is already in the works. Thanks for submitting the bug report to Bugzilla. -- Martin Cooper > > In the page

RE: Loosing my parameter in the multipart request

2002-11-19 Thread Murray, Christopher
-Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: 19 November 2002 16:52 To: Struts Users Mailing List Subject: RE: Loosing my parameter in the multipart request Im rather in agreement. It really should parse the request parameters before reset is called so they are

RE: Loosing my parameter in the multipart request

2002-11-19 Thread Kris Schneider
of > request processing!). > > -Original Message- > From: Kris Schneider [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, November 20, 2002 00:56 > To: Struts Users Mailing List > Subject: RE: Loosing my parameter in the multipart request > > > Just to clarify, your speci

RE: Loosing my parameter in the multipart request

2002-11-19 Thread Andrew Hill
- From: Kris Schneider [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 00:56 To: Struts Users Mailing List Subject: RE: Loosing my parameter in the multipart request Just to clarify, your specific situation violates #3. The content type of your request is multipart/form-data, right

RE: Loosing my parameter in the multipart request

2002-11-19 Thread Kris Schneider
> > Quoting "Murray, Christopher" <[EMAIL PROTECTED]>: > > > what if you wanted to retrieve a request parameter for a branch in your > > reset method ? > > > > -Original Message- > > From: Kris Schneider [mailto:[EMAIL PROTE

RE: Loosing my parameter in the multipart request

2002-11-19 Thread Kris Schneider
55 > To: Struts Users Mailing List > Subject: RE: Loosing my parameter in the multipart request > > > Sure, but that's just the normal flow of form processing: > > reset -> populate -> validate > > Quoting "Murray, Christopher" <[EMAIL PROTECTED]&g

RE: Loosing my parameter in the multipart request

2002-11-19 Thread Andrew Hill
[mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 19, 2002 23:50 To: 'Struts Users Mailing List' Subject: RE: Loosing my parameter in the multipart request what if you wanted to retrieve a request parameter for a branch in your reset method ? -Original Message- From: Kris

RE: Loosing my parameter in the multipart request

2002-11-19 Thread Murray, Christopher
what if you wanted to retrieve a request parameter for a branch in your reset method ? -Original Message- From: Kris Schneider [mailto:[EMAIL PROTECTED]] Sent: 19 November 2002 15:55 To: Struts Users Mailing List Subject: RE: Loosing my parameter in the multipart request Sure, but

RE: Loosing my parameter in the multipart request

2002-11-19 Thread Kris Schneider
i.e. my reset method exploded but when I commented it out the validate > worked fine. > > -Original Message- > From: Kris Schneider [mailto:[EMAIL PROTECTED]] > Sent: 19 November 2002 13:39 > To: Struts Users Mailing List > Subject: Re: Loosing my parameter in the

RE: Loosing my parameter in the multipart request

2002-11-19 Thread Andrew Hill
Did you have any luck with the (ugly) workaround I suggested? -Original Message- From: Murray, Christopher [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 19, 2002 21:41 To: 'Struts Users Mailing List' Subject: RE: Loosing my parameter in the multipart request It would a

RE: Loosing my parameter in the multipart request

2002-11-19 Thread Murray, Christopher
To: Struts Users Mailing List Subject: Re: Loosing my parameter in the multipart request If the request content type isn't application/x-www-form-urlencoded, then the getParameter family of methods won't work. However, I'm guessing that Struts will handle this for you if you ma

RE: Loosing my parameter in the multipart request

2002-11-19 Thread Andrew Hill
'&'; return url + delimeter + parameter + '=' + value; } -Original Message- From: Murray, Christopher [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 19, 2002 21:12 To: 'Struts Users Mailing List' Subject: Loosing my parameter in the multipart request

Re: Loosing my parameter in the multipart request

2002-11-19 Thread Kris Schneider
If the request content type isn't application/x-www-form-urlencoded, then the getParameter family of methods won't work. However, I'm guessing that Struts will handle this for you if you make userAction a property on an ActionForm. Your app logic may need to change in that case since Struts will po

Loosing my parameter in the multipart request

2002-11-19 Thread Murray, Christopher
Hey there guys n gals, I seem to be loosing a parameter of my request when I submit a multi-part form. In the page I have a, this is written to by a call to, LINK which calls, function submitFormDispatch( formname, value ) { var form = document.forms[ formnam