RE: How to set start up sequence of application in tomcat

2010-09-15 Thread Caldarale, Charles R
> From: Ashish Kulkarni [mailto:ashish.kulkarn...@gmail.com] > Subject: Re: How to set start up sequence of application in tomcat > So there is no way of doing it through tomcat, > how can i do it? You will have to implement your own sequencing controller. The servlet spec likes

Re: How to set start up sequence of application in tomcat

2010-09-15 Thread Mark Thomas
On 15/09/2010 21:00, Ashish Kulkarni wrote: > Hi > So there is no way of doing it through tomcat, how can i do it? Read my response again. Mark - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional command

Re: How to set start up sequence of application in tomcat

2010-09-15 Thread Ashish Kulkarni
Hi So there is no way of doing it through tomcat, how can i do it? Ashish On Wed, Sep 15, 2010 at 3:47 PM, Mark Thomas wrote: > On 15/09/2010 20:43, Ashish Kulkarni wrote: > > Hi > > I have deployed 3 applications in tomcat, is there a way to setup startup > > sequence of these applications in

Re: How to set start up sequence of application in tomcat

2010-09-15 Thread Mark Thomas
On 15/09/2010 20:43, Ashish Kulkarni wrote: > Hi > I have deployed 3 applications in tomcat, is there a way to setup startup > sequence of these applications in tomcat, for example if i have test, test1, > test2 as application then i would like to start test2 first, test1 second > and test last, as

How to set start up sequence of application in tomcat

2010-09-15 Thread Ashish Kulkarni
Hi I have deployed 3 applications in tomcat, is there a way to setup startup sequence of these applications in tomcat, for example if i have test, test1, test2 as application then i would like to start test2 first, test1 second and test last, as test needs some information from test1. Any ideas -