Re: loading a CharsetProvider via WebappClassLoader

2009-11-02 Thread Ronald Klop
Kris, Thanks a lot for these pointers. It makes a lot very clear and we will do the dirty workaround now and vote for the bugs at the Sun website. Ronald. Op donderdag, 29 oktober 2009 16:48 schreef Kris Schneider kschnei...@gmail.com: I guess this bug will be of interest since it

loading a CharsetProvider via WebappClassLoader

2009-10-29 Thread Ronald Klop
Hi, I have this jar (jutf7.jar) which should register itself with the CharsetProvider of Java. If I put it in the WEB-INF/lib directory it is ignored by Java. I understand that this is because of order in which the WebappClassLoader asks all other classloaders for a class. How can this be

Re: loading a CharsetProvider via WebappClassLoader

2009-10-29 Thread Kris Schneider
While the Javadoc for CharsetProvider claims that providers are looked up via the current thread's context class loader, the code for Charset seems to clearly be using ClassLoader.getSystemClassLoader()... On Thu, Oct 29, 2009 at 10:51 AM, Ronald Klop ronald-mailingl...@base.nl wrote: Hi, I

Re: loading a CharsetProvider via WebappClassLoader

2009-10-29 Thread Kris Schneider
I guess this bug will be of interest since it mentions both jutf7 and webapps ;-) http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4619777 On Thu, Oct 29, 2009 at 11:42 AM, Kris Schneider kschnei...@gmail.com wrote: While the Javadoc for CharsetProvider claims that providers are looked up