In order to access session, you need access to object HttpServletRequest.
ActionForm does not have access to HttpServletRequest hence you cant access , session over here.
In Action class, only execute method is passed object HttpServletRequest, hence apart from execute, its not possible to access session.
However following places you can access session variable using request object.
see
Action class documentation to find what method have access to request object.
There are more than 10 methods like that.
HTH
V
[ May 02, 2008: Message edited by: Vishal Matere ]