Some crude code to copy/paste into your jsp ...
<%
ClassLoader cl = this.getClass().getClassLoader();
ClassLoader lastCl = null;
while (cl != null && lastCl  != cl) {
    lastCl = cl;
    out.println(cl.getClass().getName() + "[" + cl + "]");
    cl = cl.getParent();
}
%>

-Tim

Benson Margulies wrote:

The files show as lowercase in windows. Is there any way to get Tomcat
to dump out the classpath as it perceives it?


-----Original Message-----
From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 15, 2005 11:28 AM
To: Tomcat Users List
Subject: RE: 5.0.28 catalina.properties file



From: Benson Margulies [mailto:[EMAIL PROTECTED]
Subject: RE: 5.0.28 catalina.properties file

What didn't work looked like

common.loader=${catalina.home}/common/classes,${catalina.home}
/common/endorsed/*.jar,{catalina.home}/common/lib/*.jar,c:/esri/lib/bt
nm.jar


Grasping at straws here - could there be a case sensitivity issue with
the spelling of btnm.jar?  (I know it's Windows, but not all Java code
respects the case insensitivity of that platform.)

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only by the intended recipient. If you received this in error, please contact the sender and delete the e-mail and its attachments from all computers.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]




--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to