Re: Mulitple JVMs

2004-10-22 Thread QM
On Fri, Oct 22, 2004 at 08:58:10AM +0100, Chris Ward wrote: : I know I could have a separate Tomcat on a different (or the same) : server dedicated to running the new stuff, but I wondered if anyone : has any advice on this. You may want to search the archives -- this question appears frequently.

RE: Mulitple JVMs

2004-10-22 Thread Shapira, Yoav
Hi, One webapp can only run in one JVM. But if you are splitting your webapp, you can use the CATALINA_BASE/CATALINA_HOME approach QM referred to, or have an entirely new Tomcat instance. It doesn't make that big a difference. Consider also making the rest of your webapp run in the new JVM, so

RE: Mulitple JVMs

2004-10-22 Thread Chris Ward
Hi, One webapp can only run in one JVM. But if you are splitting your webapp, you can use the CATALINA_BASE/CATALINA_HOME approach QM referred to, or have an entirely new Tomcat instance. It doesn't make that big a difference. That's is what I thought, but thanks for