RE: Determining the complete classpath for a web app in Tomcat 5.5

2007-02-25 Thread Rutherford, Michael
> > From: Rutherford, Michael [mailto:[EMAIL PROTECTED] > > Subject: Determining the complete classpath for a web app in > > Tomcat 5.5 > > > > I am attempting to find a (preferably simple :-) way to find out the > > complete classpath for a web app. >

RE: JVM per web App in Tomcat 5 possiable

2007-02-21 Thread Rutherford, Michael
I had a similar problem (native exceptions propagating out and killing the JVM and thereby Tomcat). My quick and dirty solution was to wrap the calls with a main() and run them as a separate java app in its own JVM. Any problems therefore killed the subordinate JVM not the one running Tomcat. I'm