Re: Need help writing an interceptor to force a user to change their password

2009-06-30 Thread Russell Neufeld
Thanks Nate and Tim. Worked like a charm. Russ Sarr, Nathan wrote: Hi Russ, You may want to try creating a global result in your struts.xml: global-results result name=change-password/pages/user/login/force_change_password.jsp/result /global-results Then in your interceptor

Re: Need help writing an interceptor to force a user to change their password

2009-06-29 Thread Timothy Orme
You should be able to just create a global result with the jsp you want. Ala: global-results result name=passwordChange/passwordChange.jsp/result /global-results Then have the interceptor return that string when needed. Any time it's true, the result will get hit and the user will get

RE: Need help writing an interceptor to force a user to change their password

2009-06-29 Thread Sarr, Nathan
Hi Russ, You may want to try creating a global result in your struts.xml: global-results result name=change-password/pages/user/login/force_change_password.jsp/result /global-results Then in your interceptor return the result name change-password That is how we accomplished something