Re: Deployment order strategy

2006-02-03 Thread Bruno Georges
ginal Message - From: "LE CALVE, Laurent" [EMAIL PROTECTED] Sent: 03.02.2006 14:51 To: Subject: Deployment order strategy > I have 3 different .war files to deploy under Tomcat 5.5 > I deploy under Tomcat (under webapps) these 3 files with Eclipse 3.2 and the > order they st

Re: Deployment order strategy

2006-02-03 Thread David Smith
There is no guarantee regarding the start order of webapps. This is primarily due to the threaded nature of tomcat. Your best bet is to have the dependent webapp(s) intelligently handle the case where the first one isn't available yet. It'll make for a much more robust and scaleable design.

Deployment order strategy

2006-02-03 Thread LE CALVE, Laurent
> I have 3 different .war files to deploy under Tomcat 5.5 > I deploy under Tomcat (under webapps) these 3 files with Eclipse 3.2 and the > order they start under Tomcat is very important for me because they > communicate between them with WebServices. > > When Tomcat starts, I want that Tomc