Problem with policies

2008-04-30 Thread Roberto Riggio
Hi, I'm running tomcat 5.5.25 under ubuntu. However with the default setup i get the following exeception when a try to use my webapp: org.apache.jasper.JasperException: The absolute uri: http://struts.apache.org/tags-html cannot be resolved in either web.xml or the jar files deployed with

Re: Problem with policies

2008-04-30 Thread David Smith
What makes you think its a problem with the security policy file? This looks more like it can't find the struts html taglib tld file. It's looking for the definition in your web.xml file or the tld file in the META-INF of one of your .jar files in WEB-INF/lib --David Roberto Riggio

Re: Problem with policies

2008-04-30 Thread Roberto Riggio
Because it works fine if I add the following block to to 50user.policy grant codeBase file:${catalina.base}/webapps/myapp/- { permission java.security.AllPermission; }; Am I missing something? R. - David Smith [EMAIL PROTECTED] wrote: What makes you think its a problem with the

Re: Problem with policies

2008-04-30 Thread Mark Thomas
Roberto Riggio wrote: Because it works fine if I add the following block to to 50user.policy grant codeBase file:${catalina.base}/webapps/myapp/- { permission java.security.AllPermission; }; Am I missing something? Use the debug options for the security manager and get the details of

Re: Problem with policies

2008-04-30 Thread David Smith
I would have expected a SecurityException or AccessControlException in the stack you posted if the security manager were at fault. Did you post the whole thing or just a snippet? --David Roberto Riggio wrote: Because it works fine if I add the following block to to 50user.policy grant