Re: Accessing a session object defined in an action

2008-09-14 Thread Celinio Fernandes
hey, never mind, i fixed it. I forgot to import the struts-tags taglib in the second JSP. --- On Sun, 9/14/08, Celinio Fernandes  wrote: From: Celinio Fernandes Subject: Accessing a session object defined in an action To: "Struts Users Mailing List" Date: Sunday, September 14, 200

Accessing a session object defined in an action

2008-09-14 Thread Celinio Fernandes
Hi, I have not played much with Struts 2 yet, so forgive me if this question is too easy. Inside an Action ActionA, I put an object into a session, like this : public class ActionA extends ActionSupport { ... Map session = ActionContext.getContext().getSession(); session.put("test", test1); ...