Appending to TOMCAT's class path

2002-05-07 Thread Tim Cronin

the startup scripts (under 4.X) for tomcat do not use the System classpath
setting
by default. In a production environment I'm fine with putting my jars
in the common\lib directory but in development I want to be able
to add my source tree to the classpath tomcat uses. once I do this by
changing the setclasspath script It stops finding internal files. one
example
is creating a custom realm. I fails to find the BaseRealm file that is
in the server\lib\catalina.jar once I add that to the script it fails to
find 
other files in additional jars.

Does anyone have a solution other than having to make a new jar file every
time
I recompile? 

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




Re: Appending to TOMCAT's class path

2002-05-07 Thread Larry Meadors

Why not put your source in the WEB-INF/classes directory of your context
or put them in any other directory, and use ant to build and have it
build the classes into that directory?
 
Larry

 [EMAIL PROTECTED] 05/07/02 10:12AM 
Does anyone have a solution other than having to make a new jar file
every
time
I recompile?