JSP Classloader issue

2008-03-06 Thread Pat C
Hi, Similar to how different servlets run in different classloaders scope, we have written a web application (WAR File) that runs the applications for each customer by creating a classloader per customer within the same servlet context. This means that all the dependent jar files of the

RE: JSP Classloader issue

2008-03-06 Thread Caldarale, Charles R
From: Pat C [mailto:[EMAIL PROTECTED] Subject: JSP Classloader issue Similar to how different servlets run in different classloaders scope, Actually, it's different webapps that are handled by separate classloaders. All servlets of a given webapp are under the same classloader. we run

Re: JSP Classloader issue

2008-03-06 Thread Martin Gainty
- - Original Message - From: Pat C [EMAIL PROTECTED] To: users@tomcat.apache.org Sent: Thursday, March 06, 2008 11:25 AM Subject: JSP Classloader issue Hi, Similar to how different servlets run in different classloaders scope, we have written a web application (WAR File) that runs