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: /pages/user/login/force_change_password.jsp Then in your interceptor return the result name "change-password" That is how we accomplis

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: /pages/user/login/force_change_password.jsp Then in your interceptor return the result name "change-password" That is how we accomplished something similar to your pblem. Hope this helps. -Nate _

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: /passwordChange.jsp Then have the interceptor return that string when needed. Any time it's true, the result will get hit and the user will get fowarded. Unless I'm missing something. -Tim Russell Neufel