ClassPath with Tomcat 4.1

2003-09-11 Thread David LAFAY
Hello, Tomcat 3.x have a wrapper.properties file. Where is it on tomcat 4.1.x release. I don't know how to configure classpath for my webApp Thanks, David [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: ClassPath with Tomcat 4.1

2003-09-11 Thread Kwok Peng Tuck
Classes for your webapp are looked for in either : WEB-INF/lib; as a jar file or WEB-INF/classes; non jar files So for example if you have a jar file that you want to use in your web app, put them in your webapp's WEB-INF/lib. You should be able to use them. David LAFAY wrote: Hello, Tomcat

Re: ClassPath with Tomcat 4.1

2003-09-11 Thread David LAFAY
Thanks but... When the following code : System.getProperty(java.class.path) return only C:\Program Files\Apache Group\Tomcat 4.1.27\bin\bootstrap.jar It is a problem for me because I use the java.class.path to search my properties files And then I don't find it ! Kwok Peng Tuck [EMAIL

Re: ClassPath with Tomcat 4.1

2003-09-11 Thread Bill Barker
4.1.x uses the (deprecated) JavaService to install a Windows service. You can continue to use (the even more deprecated, but at least it works :) jk_nt_service from 3.x, or consider using the 5.x commons-daemon 'procrun' (my personal recommendation). David LAFAY [EMAIL PROTECTED] wrote in

RE: ClassPath with Tomcat 4.1

2003-09-11 Thread Mike Curwen
To: [EMAIL PROTECTED] Subject: Re: ClassPath with Tomcat 4.1 Thanks but... When the following code : System.getProperty(java.class.path) return only C:\Program Files\Apache Group\Tomcat 4.1.27\bin\bootstrap.jar It is a problem for me because I use the java.class.path to search my