DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=37213>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=37213





------- Additional Comments From [EMAIL PROTECTED]  2006-01-26 11:25 -------
You not allow you app to write the log file.

Caused by: java.security.AccessControlException: access denied
(java.io.FilePermission \ear5.log write)
        at

Add a grant to to you conf/catalina.policy:

example (not tested):

grant codeBase "file:${catalina.base}/webapps/<your app>/-" {
   permission java.lang.FilePermission "${catalina.base}${/}ear5.log", 
"read,write,delete" ;
};

Better use at your log4j.properties ${catalina.base}/logs/ear5.log as file.
For log rotation you need more permissions!

Hope you have bundle the commons-logging.jar (1.0.4) at WEB-INF/lib.

Peter


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to