Re: session expiration issue and tiles

2005-04-08 Thread Dave Newton
sudip shrestha wrote: -- I have few layout.jsp templates where I have following chuck of code which should redirect the browser to login page if session expires: <% String loginCheck = "notLoggedIn"; if( session.getAttribute( "sessi

Re: session expiration issue and tiles

2005-04-08 Thread sudip shrestha
Dave: I have user types with varying level of privileges and only a defined user type can access a particular page. I thought of using filter for this purpose, but not sure how to designate which layout*.jsp (have created multiple layout.jsp pages for varying user types: e.g. admin can access layo

Re: session expiration issue and tiles

2005-04-08 Thread Dave Newton
sudip shrestha wrote: I have user types with varying level of privileges and only a defined user type can access a particular page. I thought of using filter for this purpose, but not sure how to designate which layout*.jsp (have created multiple layout.jsp pages for varying user types: e.g. admin

Re: session expiration issue and tiles

2005-04-11 Thread sudip shrestha
Dave: I can understand presenting different menu options based on user privileges and having the same layout pages. But my concern is there may be some pages which a user with less privileges may not be allowed to see at all, and what if he finds the url of that page and types the url in the brows

RE: session expiration issue and tiles

2005-04-11 Thread Michael Oliver
:[EMAIL PROTECTED] Sent: Monday, April 11, 2005 6:37 AM To: Dave Newton; Struts Users Mailing List Subject: Re: session expiration issue and tiles Dave: I can understand presenting different menu options based on user privileges and having the same layout pages. But my concern is there may be some

Re: session expiration issue and tiles

2005-04-11 Thread Dave Newton
sudip shrestha wrote: I can understand presenting different menu options based on user privileges and having the same layout pages. But my concern is there may be some pages which a user with less privileges may not be allowed to see at all, and what if he finds the url of that page and types the

Re: session expiration issue and tiles

2005-04-12 Thread sudip shrestha
I am aware of all these things, but I cannot change my design at this point, and today, I found out that this is some sort of bug in internet explorer which does not do redirection properly and instead displays blank page, where as Firefox does it without any problems. On Apr 11, 2005 12:53 PM, Da