I have a .war(web app) deployed on Tomcat server. I have another application on jBoss server. The application on the Tomcat is the start point and a jsp on the jBoss server gets called from the Tomcat app. Then I am planning to set a session on the jBoss server app and when I am done my processing on the jBoss I will send back the control to the app on Tomcat.
The question is 1) Is the model that I mentioned above doable? 2) If it is can I invalidate the session on Tomcat server once the control comes back from the jBoss server?
Thanks!