Setting and accessing Context and Session data

2005-08-09 Thread C.F. Scheidecker Antunes
Hello all, More newbie questions. I just want to make sure I understand the idea on how to write a Struts application properly. How do you save something to the Session scope and then access it within Struts? I pretty much understand how to do it within a Servlet. How do you do the same

Re: Setting and accessing Context and Session data

2005-08-09 Thread Dave Newton
C.F. Scheidecker Antunes wrote: How do you save something to the Session scope and then access it within Struts? I pretty much understand how to do it within a Servlet. How do you do the same for the Context? I also know how to do it in a Servlet. Same way; inside your Actions you can get

Re: Setting and accessing Context and Session data

2005-08-09 Thread Michael Jouravlev
On 8/9/05, C.F. Scheidecker Antunes [EMAIL PROTECTED] wrote: How do you save something to the Session scope and then access it within Struts? I pretty much understand how to do it within a Servlet. You can do this directly, or you can setup your ActionForm class to have session scope.