RE: Is there a common lib between webapps, but not instances?

2003-02-28 Thread Shapira, Yoav
Howdy, You would probably save yourself some headaches and frustration if you just package everything a webapp needs with the webapp. Don't use common libraries at all... Yoav Shapira Millennium ChemInformatics -Original Message- From: Frank Diakovasilis [mailto:[EMAIL PROTECTED]

RE: Is there a common lib between webapps, but not instances?

2003-02-28 Thread Frank Diakovasilis
That probably would be ideal, but I am using soap as a web app and it shares files with the other webapp, so I am stuck with the headache, but thanks anyway. -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 10:21 AM To: Tomcat Users List

RE: Is there a common lib between webapps, but not instances?

2003-02-28 Thread Scott, Sean
You can create a separate CATALINA_BASE for each instance and place the common libraries in the $CATALINA_BASE/shared directory. ( This works in 4.1.18, but I am not sure about prior versions ) -sean -Original Message- From: Frank Diakovasilis [mailto:[EMAIL PROTECTED] Sent: Friday,

Re: Is there a common lib between webapps, but not instances?

2003-02-28 Thread Mark Strecker
$CATALINA_HOME/shared/lib shares jars between webapps but not tomcat. Mark Frank Diakovasilis wrote: I have multiple instance of Tomcat set up with multiple webapps in each. I would like a jar file to be shared across the webapps, but not across the instances. Is there a directory in place