|
Monday, 21 September 2009 19:09 |
|

And again a tomcat issue! If you ever get over
1
2
3
|
Cannot configure CacheManager:
file:/var/lib/tomcat5.5/webapps/testappl/WEB-INF/classes/ehcache.xml:12:
Could not set attribute "path"
|
in your logfiles, you have a permission problem on your tomcat-application-server. If you are in debian go to the directory /etc/tomcat5.5/policy.d/ choose the right file (system/debian/webapps/catalina/admin policy) and add following permission
1
|
permission java.util.PropertyPermission "java.io.tmpdir", "read";
|
After restarting your tomcat (/etc/init.d/tomcat5.5 restart on debian) this config issue should be gone.
|