Re: why/when to use redirect

2006-11-23 Thread Mississippi John Hurt
How could I forward via redirect option but have struts pass any request attributes or parameters to the new redirect url? I think its only possible to pass the request parameters and not the attributes right? How can I do that? Thanks. On 11/23/06, Adam Hardy <[EMAIL PROTECTED]> wrote: You

Re: why/when to use redirect

2006-11-23 Thread Adam Hardy
You can also manipulate your forward to put the parameters (preferably just an ID, not a whole set of properties) onto the querystring, so that they reappear in the request parameters and your form bean. It's the Post-Redirect-Get pattern. Nuwan Chandrasoma on 21/11/06 10:15, wrote: if you use

Re: why/when to use redirect

2006-11-21 Thread Nuwan Chandrasoma
hi, if you use redirect=true , it would create a new request.. so what ever u had on the reqest will be lost. i think u have your action in request socope, you can change them to session scope and make sure you removed the Form and other attribute you put on the session after the action is fi