When I use a redirect="true" directive in my
struts configuration file, I find that the
JSP that gets control is not able to access the current session attributes through request.getSession().getAttribute(). The session.getId() is observed to be different just before the redirect and just after the target page gets control.
I dont understand this - redirect="true" causes a fresh request to be raised but surely the session will remain the same? Am I doing something wrong here?
BTW, the code works properly in JDev.
I am using Oracle AS 10.1.3 and JDev of the same version.