Override BOOTSTRAP classloader with endorsed directory

2007-10-21 Thread ypomonh
I'm trying to write a servlet that use the latest version of JAX-WS API. This is a newer version of the API than the one shipped with JDK 6, so in order to avoid loading the older library from the bootstrap loader, I put the new JAX-WS JARs in java-home/lib/endorsed. Still when the servlet

Re: Override BOOTSTRAP classloader with endorsed directory

2007-10-21 Thread David Delbecq
Tomcat ignores classpath from JVM and creates it's own one, including endorsed libraries. If you want to inject specific library at the endorsed level there is an endorsed/lib folder part of tomcat distribution. ypomonh a écrit : I'm trying to write a servlet that use the latest version of JAX-WS