Re: [logging] Commons logging in applets

2006-06-07 Thread Simon Kitching
Hi Aaron, Firstly, I presume this is commons-logging 1.1 you are using. LogFactoryImpl.java:1250 in the 1.1 release is this line: // try the parent classloader currentCL = currentCL.getParent(); which does seem to be a likely cause for the exception you report. I expect

Re: [logging] Commons logging in applets

2006-06-07 Thread Aaron Bruegl
Hi Simon, Thanks for your detailed response, it is nice to know someone cares. I suspect you are right, but for now I have a workaround which I have posted here: http://forum.java.sun.com/thread.jspa?threadID=742451 Basically pass any actual work (that subsequently will use commons logging)

[logging] Commons logging in applets

2006-06-05 Thread Aaron Bruegl
I get a security error when some of my logging code is called from a method that was called by javascript. I have looked around at some of the forums but could not figure out a solution. All my jars are signed, and I even configured commons logging to only log to system.err and not the file

Re: [logging] Commons logging in applets

2006-06-05 Thread Aaron Bruegl
I think I may have found a workaround: http://www.snowbound.com/tech_tips/g_security_applet_java.html Aaron Bruegl wrote: I get a security error when some of my logging code is called from a method that was called by javascript. I have looked around at some of the forums but could not figure