You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Ma...@Design-Intelligence.com on 2000/10/12 01:47:32 UTC

Directory permissions

How can I allow a taglib under Tomcat 3.2 to read files from a non-current
directory? I have tried adding the directories under httpd-conf:
	<Directory "c:/apache/jakarta-tomcat/webapps/Chiclet">
	    Options All MultiViews
	    AllowOverride None
	    Order allow,deny
	    Allow from all
	</Directory>
and by granting access in tomcat.policy:
	grant codeBase "file:${tomcat.home}/webapps/Chiclet" {
	      permission java.util.PropertyPermission "*", "read";
		permission java.security.AllPermission;
	};
to no avail.

Thx
Marc McDonald
Design Intelligence