I have a number of war projects deployed in a single tomcat 5.5 container. They consume each other\'s services through http, and thus I need to make sure that, when Tomcat
Frankly speaking, you need to revisit your architecture.
Your applications are too tightly coupled with each other.
You should probably have some controller application and have all applications register with it or something like that.
This is just a shot in the dark without knowing too much about your specific problem