Re: tomcat webapp startup order

2007-05-25 Thread Nencho Lupanov
Hi david, the web app do the call to this url itself and not upon a client request. It's the axis2 web app that reads a policy file by reference. Regards, Nencho 2007/5/25, David Delbecq <[EMAIL PROTECTED]>: Or you can delay your intialization code to the first hit to webapplication (if fais

Re: tomcat webapp startup order

2007-05-25 Thread David Delbecq
Or you can delay your intialization code to the first hit to webapplication (if faisable, using a requestfilter for example). At startup, tomcat won't respond to any request until all webapps have been started, so if filter code is reached, all webapps have been started. En l'instant précis du 25/

Re: tomcat webapp startup order

2007-05-25 Thread Nencho Lupanov
Hi Tim, That's a pretty good idea, Thanks. 2007/5/25, Tim Lucia <[EMAIL PROTECTED]>: > -Original Message- > From: Nencho Lupanov [mailto:[EMAIL PROTECTED] > Sent: Friday, May 25, 2007 7:22 AM > To: Tomcat Users List > Subject: tomcat webapp startup order > > Hi all, > > I have vanil

RE: tomcat webapp startup order

2007-05-25 Thread Tim Lucia
> -Original Message- > From: Nencho Lupanov [mailto:[EMAIL PROTECTED] > Sent: Friday, May 25, 2007 7:22 AM > To: Tomcat Users List > Subject: tomcat webapp startup order > > Hi all, > > I have vanilla tomcat 5.5 installed. > I also have axis2 web application deploying on every startup.