Re: Restarting Tomcat causes application to be displayed across all instances

2006-08-07 Thread David Smith
Tomcat does not explicitely use any specific classpath outside of it's own. It even ignores the system set CLASSPATH variable. Check your config settings and webapp for references to ~/cvs/fable/* directory. --David Ryan O'Hara wrote: I think I found a promising lead to what is going wrong

Re: Restarting Tomcat causes application to be displayed across all instances

2006-08-04 Thread Ryan O'Hara
I think I found a promising lead to what is going wrong here. The FABLE application is reading as if the CLASSPATH is set to ~/cvs/fable/web/info/ instead of /usr/local/tomcat/ webapps/fable(_[user])/WEB_INF/classes/info. I found this out by doing the following: 1. make install_dev. 2. rm /

Re: Restarting Tomcat causes application to be displayed across all instances

2006-08-04 Thread Ryan O'Hara
Unfortunately, the startup script doesn't set the classpath and the classes are not in the shared folders. Any other ideas? I am currently digging.. Thanks again, Ryan On Aug 4, 2006, at 12:47 PM, Filip Hanik - Dev Lists wrote: could be several reasons, one common one is that somewhere i

Re: Restarting Tomcat causes application to be displayed across all instances

2006-08-04 Thread Filip Hanik - Dev Lists
could be several reasons, one common one is that somewhere in your restart script, you are setting the classpath manually to include the classes. another would be that your classes are in shared/classes or shared/lib if not, you'd need to dig deeper. Ryan O'Hara wrote: Currently, we have a few

Restarting Tomcat causes application to be displayed across all instances

2006-08-04 Thread Ryan O'Hara
Currently, we have a few three development instances of the "same" application being run - webapps/A, webapps/B, and webapps/C. By same I mean the same application, although each instance is usually a bit different, as the developers work on their individual instance. The problem we are f