Re: custom web app classloader

2003-10-31 Thread Glenn Nielsen
Nielsen [mailto:[EMAIL PROTECTED] Sent: Thursday, October 30, 2003 10:20 PM To: Tomcat Users List Subject: Re: custom web app classloader I have done this but I started by extending org.apache.catalina.loader.WebappLoader, then overriding anything I needed to customize. Regards, Glenn Jwahar Bammi

RE: custom web app classloader

2003-10-31 Thread Shapira, Yoav
Howdy, I want to write my own custom web application class loader, for Tomcat 4.1* Out of curiosity, why? - the class I write should implement org.apache.catalina.Loader interface. - once I write the class, I tell tomcat to use it by specifying it in the Loader tag of a Context in server.xml

Re: custom web app classloader (KMM78682673V18722L0KM)

2003-10-31 Thread eBay.de Team
/server/lib Yes, or in $CATALINA_HOME/common/lib the docs don't make it clear what the mechanics should be thanks again bammi -Original Message- From: Glenn Nielsen [mailto:[EMAIL PROTECTED] Sent: Thursday, October 30, 2003 10:20 PM To: Tomcat Users List Subject: Re: custom web

Re: custom web app classloader

2003-10-30 Thread Glenn Nielsen
I have done this but I started by extending org.apache.catalina.loader.WebappLoader, then overriding anything I needed to customize. Regards, Glenn Jwahar Bammi wrote: I want to write my own custom web application class loader, for Tomcat 4.1* (and hopefully it will continue to work for Tomcat

custom web app classloader

2003-10-30 Thread Jwahar Bammi
I want to write my own custom web application class loader, for Tomcat 4.1* (and hopefully it will continue to work for Tomcat 5*). From the precious little info that is available, I have gleaned the following: - the class I write should implement org.apache.catalina.Loader interface. - once