Re: order of web app initialization.

2007-06-30 Thread Johnny Kewl
the servlet at anytime during startup. otherwise they will init, only on a request - Original Message - From: suchitha koneru [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Saturday, June 30, 2007 1:05 AM Subject: order of web app initialization. Hello Tomcat

RE: order of web app initialization.

2007-06-30 Thread Tim Lucia
-Original Message- From: Johnny Kewl [mailto:[EMAIL PROTECTED] Sent: Saturday, June 30, 2007 7:57 AM To: Tomcat Users List Subject: Re: order of web app initialization. These TC designers seem to have though of everything See load-on-startup1/load-on-startup The load

order of web app initialization.

2007-06-29 Thread suchitha koneru
Hello Tomcat users , Iam using Tomcat 5.520 . I have three web application contexts Context A, B and C. I have a requirement because of which Context A should start Before B and C. All the web applications contexts are placed as WARS under Tomcat/webapps. How can we indicate the order

Re: order of web app initialization.

2007-06-29 Thread David Smith
There is no guarantee of any order in initializing contexts. You would better spend your time designing webapps B and C to deal with the possibility webapp A isn't running. Or at least design them to deal with the possibility that they may start out of order. This has also been answered on