Changing the path of a mapping's foward (code review)

2001-08-30 Thread Matt Raible
I am changing the path of a mapping's forward name=success to add parameters on to it. The reason I am adding these parameters is because I have to have a redirect=true on my forward in the struts-config file. If I don't, and I try to forward to another action, iPlanet chokes. I add the

Re: Changing the path of a mapping's foward (code review)

2001-08-30 Thread Jonathan M Crater
matt-- i think the reason you lose your request attributes is because the action servlet performs a HttpServletResponse.sendRedirect instead of a RequestDispatcher.forward when you have redirect=true in your action mapping. thus, unless you add values to the end of the querystring as you're

2nd Post: Changing the path of a mapping's foward (code review)

2001-08-30 Thread Matt Raible
-to: [EMAIL PROTECTED] Subject: Changing the path of a mapping's foward (code review) To: [EMAIL PROTECTED] I am changing the path of a mapping's forward name=success to add parameters on to it. The reason I am adding these parameters is because I have to have a redirect=true on my forward