Re: [Stripes-users] catalina.policy file in Tomcat with security manager

2009-08-12 Thread Levi Hoogenberg
Hello, this is caused by the fact that Stripes performs a System.getProperties() call the StripesFilter. There are two ways around it: - subclass StripesFilter to avoid the call; - edit your security settings to allow the call. I'm no SecurityManager expert, but the line you need

Re: [Stripes-users] catalina.policy file in Tomcat with security manager

2009-08-12 Thread Levi Hoogenberg
A few corrections to my previous mail: the offending line is a System.getProperty(...) call and is done by the BootstrapPropertyResolver. So that's the class to subclass (and configure) if you would like to override the behaviour. On Wed, Aug 12, 2009 at 8:25 PM, Levi Hoogenberg