Re: Tomcat 6.0 Classloaders

2008-06-17 Thread Ole Ersoy
So if I wanted hibernate-3.0.14.jar to be visible to all webapps I could stick in in CATALINA_HOME/shared/lib and set shared.loader = ${catalina.home}/shared/lib/hibernate-3.0.14.jar and now it's visible to all webapps, but not to Tomcat? Also correct, but I don't know why you'd go to that troub

RE: Tomcat 6.0 Classloaders

2008-06-17 Thread Caldarale, Charles R
> From: Ole Ersoy [mailto:[EMAIL PROTECTED] > Subject: Re: Tomcat 6.0 Classloaders > > common.loader = Tomcat's classes/jars visible to both webapps > and to itself. > server.loader = only tomcat > shared.loader = only webapps Correct. This is how levels prior to 6.0

Re: Tomcat 6.0 Classloaders

2008-06-17 Thread Ole Ersoy
I was wondering whether Tomcat 6.0 still has a classloader for classes that should be globally visible to all webapps only? Not by default. However, you can edit conf/catalina.properties to create any classloader hierarchy you want. So I take it: common.loader = Tomcat's classes/jars visibl

RE: Tomcat 6.0 Classloaders

2008-06-17 Thread Caldarale, Charles R
> From: Ole Ersoy [mailto:[EMAIL PROTECTED] > Subject: Tomcat 6.0 Classloaders > > I was wondering whether Tomcat 6.0 still has a classloader > for classes that should be globally visible to all webapps > only? Not by default. However, you can edit conf/catalina.proper

Tomcat 6.0 Classloaders

2008-06-17 Thread Ole Ersoy
Hi, I was wondering whether Tomcat 6.0 still has a classloader for classes that should be globally visible to all webapps only? I read through the classloader documentation and it seems to be saying that $CATALINA_HOME/lib contains classes that are visible to both Tomcat and the webapps. How