Re: servlet exception when processing TLD

2009-11-18 Thread MilleBii
Sorry for the delay was busy with other staff. file:${catalina.base}/webapps/nutch-1.0/- { Doesn't work either modified botch catalina.policy init.d/50locale.policy I don't like the idea of disabling all security which is working right now, any idea how to set this properly ? 2009/11/16

Re: servlet exception when processing TLD

2009-11-16 Thread André Warnier
MilleBii wrote: Not sure how to fully disable security ... Under Ubuntu, there is probably a file /etc/default/tomcat, which is invoked by the tomcat startup script in /etc/init.d. In the file /etc/default/tomcat, there should be a line like TOMCAT_SECURITY=YES Setting it to NO will diable

Re: servlet exception when processing TLD

2009-11-16 Thread Konstantin Kolinko
2009/11/16 MilleBii mille...@gmail.com: Not sure how to fully disable security but I added the following which I understand should grand all rights to classes under my webapp: 1.  grant codeBase file:${catalina.home}/webapps/nutch-1.0/- {  permission java.security.AllPermission;  }; in  

RE: servlet exception when processing TLD

2009-11-15 Thread Caldarale, Charles R
From: MilleBii [mailto:mille...@gmail.com] Subject: servlet exception when processing TLD SEVERE: Error reading tld listeners javax.servlet.ServletException: Exception when processing TLD at the ressource path /WEB-INF/taglibs-i18n.tld dans le contexte /nutch-1.0

Re: servlet exception when processing TLD

2009-11-15 Thread MilleBii
Nothing... is there a way to get more details actually ? Did another trial I installed Tomcat 6 and deployed the same app, still a problem but I get another issue probably more meaning full SEVERE: Exception sending initialized context event (context initialized) at listener class instance

Re: servlet exception when processing TLD

2009-11-15 Thread Pid
On 15/11/2009 19:33, MilleBii wrote: Nothing... is there a way to get more details actually ? Did another trial I installed Tomcat 6 and deployed the same app, still a problem but I get another issue probably more meaning full You're running Tomcat with the Security Manager enabled.

Re: servlet exception when processing TLD

2009-11-15 Thread MilleBii
Not sure how to fully disable security but I added the following which I understand should grand all rights to classes under my webapp: 1. grant codeBase file:${catalina.home}/webapps/nutch-1.0/- { permission java.security.AllPermission; }; in conf/catalina.policy 2. /etc/init.d/tomcat6

Re: servlet exception when processing TLD

2009-11-15 Thread MilleBii
Found where to disable security ie in /etc/init.d/tomcat6 ... now it works. Not sure why the specific grant didn't work though ? 2009/11/15 MilleBii mille...@gmail.com tried also by modifying conf/policy.d/50local.policy ... same results strange. Total stack is always the following