Re: Disappearing request values

2004-10-13 Thread Lee Harrington
That did the trick. I hadded "redirect=false" to the forward and now all of my request variables are still in the request scope. Thank you VERY much. Lee On Wed, 13 Oct 2004 12:12:58 -0400, David G. Friedman <[EMAIL PROTECTED]> wrote: > Lee, > > Is your actionMapping using 'redirect="true"'?

RE: Disappearing request values

2004-10-13 Thread Freddy Villalba A.
Are you redirecting or just forwarding to the second action? -Mensaje original- De: Lee Harrington [mailto:[EMAIL PROTECTED] Enviado el: miercoles, 13 de octubre de 2004 18:06 Para: Struts Users Mailing List Asunto: Disappearing request values I have an action that forwards to a second a

RE: Disappearing request values

2004-10-13 Thread David G. Friedman
Lee, Is your actionMapping using 'redirect="true"'? Try adding (or changing, if you already have it) your forward's redirect parameter to "false". This will make the forward internal so the browser does nothing, struts passes everything internally and loses nothing. Additionally, if you are dis