Re: [appfuse-user] How to call logout from struts baseaction

2007-10-05 Thread rbtechno
allan, Thanks for your quick respone.I'll try as you mentioned -rb Allan Ang wrote: > > > > 1. have a public static in BaseAction that holds your variable > 2. create a servlet filter that checks this value. servlet filter maps to > all urls > 3. if variable is set, re

Re: [appfuse-user] How to call logout from struts baseaction

2007-10-04 Thread Allan Ang
1. have a public static in BaseAction that holds your variable 2. create a servlet filter that checks this value. servlet filter maps to all urls 3. if variable is set, response.sendRedirect to a url that is mapped to to the BaseAction method that you want to call perhaps there is a better way

[appfuse-user] How to call logout from struts baseaction

2007-10-04 Thread rbtechno
Hi, I need to check one flag variable for all incoming request to struts base action and If the flag is set i need to call logout from baseaction itself,otherwise sub action delegation will be proceed. Please let me how to do it.. Thanks -rb