Re: Grant access to files out of webapp context using SecurityManager

2009-11-20 Thread André Warnier
g f wrote: I need to grant mywebapp read,write,execute permissions to these images. I am attempting to configure SecurityManager to allow this but am having some difficulties. Also make sure that, at the OS level, the user-id under which Tomcat runs has the permissions to access these files.

Re: Grant access to files out of webapp context using SecurityManager

2009-11-19 Thread Pid
On 19/11/2009 20:38, g f wrote: I recently activated SecurityManager and had no previous issues with this. Yes they do have permissions on that directory. I am getting many errors regarding this here is a snippet of the stack: SEVERE: StandardWrapper.Throwable java.security.AccessControlException

Re: Grant access to files out of webapp context using SecurityManager

2009-11-19 Thread g f
I recently activated SecurityManager and had no previous issues with this. Yes they do have permissions on that directory. I am getting many errors regarding this here is a snippet of the stack: SEVERE: StandardWrapper.Throwable java.security.AccessControlException: access denied (java.io.FilePermi

Re: Grant access to files out of webapp context using SecurityManager

2009-11-19 Thread Pid
On 19/11/2009 18:13, g f wrote: Hello all, I have a webapp in the following location: /apps/tomcat/webapps/mywebapp I have files located at: /files/images They are on different partitions. I need to grant mywebapp read,write,execute permissions to these images. I am attempting to configure

Grant access to files out of webapp context using SecurityManager

2009-11-19 Thread g f
Hello all, I have a webapp in the following location: /apps/tomcat/webapps/mywebapp I have files located at: /files/images They are on different partitions. I need to grant mywebapp read,write,execute permissions to these images. I am attempting to configure SecurityManager to allow this but