Communication between two applications running on two different versions of Tomcat
Posted
by Saurabh
on Stack Overflow
See other posts from Stack Overflow
or by Saurabh
Published on 2009-09-16T06:05:42Z
Indexed on
2010/04/17
9:03 UTC
Read the original article
Hit count: 205
I have two web application running on two different versions of Tomcat. App1 is on Tomcat5 and App2 is on Tomcat6. Is there any way, so that I can make a communication among these two. For example - If there is a JavaScript file in App2/js/mycode.js, then I would like to refer this from App1/page/mypage.jsp. For both applications I have defined context as -
App1.xml (Tomcat5\conf\Catalina\localhost)
<Context path="/App1" docBase="C:/eclipse/workspace/App1" debug="0">
</Context>
App2.xml (Tomcat6\conf\Catalina\localhost)
<Context path="/App2" docBase="C:/eclipse/workspace/App2" debug="0">
</Context>
© Stack Overflow or respective owner