As it turns out, I was accessing the session in the interceptor by
final ActionContext context = invocation.getInvocationContext
();
HttpServletRequest request = (HttpServletRequest)
context.get(HTTP_REQUEST);
HttpSession session = request.getSession (true);
which wasn't working. Doing this instead is working now:
Map session = ActionContext.getContext().getSession();
...although I'm not entirely sure why.
--
View this message in context:
http://www.nabble.com/session-or-interceptor-initialization---configuration-problem-tp15188815p15217815.html
Sent from the Struts - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]