Re: Access Struts objects from a session listener

2004-07-26 Thread Craig McClanahan
On Thu, 22 Jul 2004 07:54:25 +0200, Ephemeris Lappis <[EMAIL PROTECTED]> wrote: > I need to access some Struts objects, like forward mappings, from a session > listener, or other part of the application's code where no request is > available. Is it possible, and, if it is, what is the best way to d

Re: Access Struts objects from a session listener

2004-07-26 Thread puneet . a
we also had the same need to access the struts mappings from session listener. what we did was we stored everything that is needed in session listener in session before it could be required. and we know session is accessible in sessionlistener. If someone has a better approach, please suggest..