Re: Is CLASSPATH ignored ?

2002-10-30 Thread Michael Timpe
There is a way to use the classpath. In the script catalina.bat/catalina.sh the variable CLASSPATH is overwritten and all previous content is skipped. You can fix this by including the content of the CLASSPATH variable. There is also a script called setclasspath.sh/setclasspath.bat. You can

RE: Is CLASSPATH ignored ?

2002-10-30 Thread Sinclair, Alan (CORP, GEAccess)
Users List Subject: Re: Is CLASSPATH ignored ? There is a way to use the classpath. In the script catalina.bat/catalina.sh the variable CLASSPATH is overwritten and all previous content is skipped. You can fix this by including the content of the CLASSPATH variable. There is also a script called

RE: Is CLASSPATH ignored ?

2002-10-29 Thread Cox, Charlie
yes, classpath is ignored. you must put them in /WEB-INF/lib for each application or in /common/lib if you want to share them between apps. database jars need to be in /common/lib to be visible to tomcat's classes and also your webapps. Charlie -Original Message- From: Sinclair, Alan

RE: Is CLASSPATH ignored ?

2002-10-29 Thread Sinclair, Alan (CORP, GEAccess)
Okay, thanks -Original Message- From: Cox, Charlie [mailto:ccox;cincom.com] Sent: Tuesday, October 29, 2002 1:13 PM To: 'Tomcat Users List' Subject: RE: Is CLASSPATH ignored ? yes, classpath is ignored. you must put them in /WEB-INF/lib for each application or in /common/lib if you

Re: Is CLASSPATH ignored ?

2002-10-29 Thread Craig R. McClanahan
On Tue, 29 Oct 2002, Sinclair, Alan (CORP, GEAccess) wrote: Date: Tue, 29 Oct 2002 13:01:06 -0700 From: Sinclair, Alan (CORP, GEAccess) [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List (E-mail) [EMAIL PROTECTED] Subject: Is CLASSPATH ignored ? All,