Re: [Stripes-users] encrypted parameter problem

2013-10-03 Thread Chris Cheshire
In case anyone else runs into this issue my solution was to rebuild a duplicate parameter map and decrypt any parameter that was encrypted. I dug through the stripes source to find out how the validations were handled and came up with : UrlBuilder builder = new

Re: [Stripes-users] encrypted parameter problem

2013-10-03 Thread Nikolaos Giannopoulos
You can encrypt or decrypt as you like as far as I recall: http://stripes.sourceforge.net/docs/current/javadoc/net/sourceforge/stripes/util/CryptoUtil.html --Nikolaos Sent from my iPhone On Oct 3, 2013, at 1:16 PM, Chris Cheshire cheshira...@gmail.com wrote: In case anyone else runs into

[Stripes-users] encrypted parameter problem

2013-09-17 Thread Chris Cheshire
I have a login interceptor that redirects to a login page where necessary with a next parameter set to the url that was just accessed, like so : if (user == null LOGIN_NEEDED.contains(clazz)) { resolution = new RedirectResolution(Login.class); if