Losing session attribute
Hi ,
I have a servlet acting as a front controller which uses a JSP via request.getRequestDispatcher(main.jsp) to handle the display.
The JSP uses a servlet to handle the display of some hyperlinks.
I set an attribute in the controller servlet to true but in the servlet displaying links remains null. I have checked the contextPath and the session ID but they are the same.
=========== Controller ==============
ContextPath: /FrontController
session ID : f360d85b5e8fe7e5bbafac03cd69
Session attribute: true
=========== Processing Links Tag ==============
ContextPath: /FrontController
session ID : f360d85b5e8fe7e5bbafac03cd69
Session attribute: null
Does anyone have any ideas what I'm doing wrong?
thanks in advance,
J

