Re: Handling invalid sessions

2005-10-17 Thread Jadeler
Thanks for the suggestions. I'll try them out. Cheers, Jadeler --- Aladin Alaily <[EMAIL PROTECTED]> wrote: > Hi Jadeler, > > In response to your question about managing session > objects, I would > propose two methods: > > 1) Write a CustomRequestProcessor (which extends the > struts > Re

Re: Handling invalid sessions

2005-10-17 Thread Aladin Alaily
Hi Jadeler, In response to your question about managing session objects, I would propose two methods: 1) Write a CustomRequestProcessor (which extends the struts RequestProcessor), and put your management code in there. As a struts programmer, you know that all requests *should* go through

Re: Handling invalid sessions

2005-10-16 Thread rajasekhar . cherukuri
, Rajasekhar Cherukuri peru cheppanu <[EMAIL PROTECTED]> 10/17/2005 10:26 AM Please respond to "Struts Users Mailing List" To Struts Users Mailing List cc Subject Re: Handling invalid sessions If we do that, then execute() method in child classes will override Base

Re: Handling invalid sessions

2005-10-16 Thread peru cheppanu
there is NO required information in the session), then forward to a login page or failure page. Regards, Rajasekhar Cherukuri Jadeler 10/17/2005 09:57 AM Please respond to "Struts Users Mailing List" To user@struts.apache.org cc Subject Handling invalid sessions What is

Re: Handling invalid sessions

2005-10-16 Thread rajasekhar . cherukuri
Users Mailing List" To user@struts.apache.org cc Subject Handling invalid sessions What is the best way to handle invalid sessions (http sessions) within Struts? I need a way to determine when an object within a session no longer exists and redirect the user to an error page w

Handling invalid sessions

2005-10-16 Thread Jadeler
What is the best way to handle invalid sessions (http sessions) within Struts? I need a way to determine when an object within a session no longer exists and redirect the user to an error page when that happens. I was thinking of implementing HttpSessionAttributeListener or a Servlet filter. Any