RE: JSP error

2006-11-13 Thread Caldarale, Charles R
From: Ernie Ho [mailto:[EMAIL PROTECTED] Subject: JSP error I'm pretty sure of this, but Tomcat is reading the classpath environment variable right ? No, the classpath environment variable (which is a truly bad idea) is ignored by Tomcat. I mean, there is not another config file that

Re: JSP error

2006-11-13 Thread David Smith
It is NOT reading the classpath environment variable. You should place the jars your webapp needs in your web application's WEB-INF/lib where they can be automatically found. For further class loader issues, see: http://tomcat.apache.org/tomcat-5.5-doc/class-loader-howto.html --David Ernie