RE: question about load-on-startup

2001-02-05 Thread Michael Wentzel
I have a servlet which i want to load on startup. I have added the necessary line in thw web.xml file. This servlet reads a porperty file. I added this info as prams(name-value) in web.xml. However nothing seesms to be happening when i start tomcat. How do i check if the servlet has been loaded

Re: question about load-on-startup in web.xml

2005-05-10 Thread Parsons Technical Services
I may be off base on this one but I think that once Tomcat fires off the init method it doesn't care or monitor the progress of the servlet. Just think, some servlets may take several minutes to finish. If other apps had to wait then it could take a long time to get the server started. Now as f

Re: question about load-on-startup in web.xml

2005-05-10 Thread Annie Wang
hi doug, yup, was thinking along similar lines. just wasn't sure if there was some setting i wasn't aware of to do what i'm looking for. thanks. -annie On 5/10/05, Parsons Technical Services <[EMAIL PROTECTED]> wrote: > I may be off base on this one but I think that once Tomcat fires off the > i

Re: question about load-on-startup in web.xml

2005-05-11 Thread Annie Wang
i tried putting in a sleep in my servlet's init method, but $CATALINA_HOME/logs/catalina.out seems to indicate that tomcat waits for it to initalize.. in my catalina.out, i have: May 11, 2005 2:12:06 PM org.apache.catalina.core.StandardHostDeployer install INFO: Installing web application at cont

RE: question about load-on-startup in web.xml

2005-05-11 Thread Caldarale, Charles R
> From: Annie Wang [mailto:[EMAIL PROTECTED] > Subject: Re: question about load-on-startup in web.xml > > any one know if there's a way to make webappY get installed before > webappX? As far as I can tell, the intent of the JSP and servlet specs is for web applications to be

Re: question about load-on-startup in web.xml

2005-05-11 Thread Annie Wang
thanks for the insights and suggestions chuck! On 5/11/05, Caldarale, Charles R <[EMAIL PROTECTED]> wrote: > > From: Annie Wang [mailto:[EMAIL PROTECTED] > > Subject: Re: question about load-on-startup in web.xml > > > > any one know if there's a way t

RE: question about load-on-startup in web.xml

2005-05-12 Thread Michael Oliver
1, 2005 3:47 PM To: Parsons Technical Services; Tomcat Users List Subject: Re: question about load-on-startup in web.xml i tried putting in a sleep in my servlet's init method, but $CATALINA_HOME/logs/catalina.out seems to indicate that tomcat waits for it to initalize.. in my catalina.out, i have:

Re: question about load-on-startup in web.xml

2005-05-12 Thread QM
On Wed, May 11, 2005 at 08:53:43PM -0500, Caldarale, Charles R wrote: : > any one know if there's a way to make webappY get installed before : > webappX? : : If you want to synchronize application deployment, I think you're going : to have to do that within the app itself, possibly with context :