Hi,
I have deployed two .ear files ( employee.ear and funnel.ear ) into
jboss-tomcat. I want to pass the value between two application.
using session scope store value in one application trying to retrive
another applcation, but i am getting different session id.
Is there any other way i can pass the value between applications.
-SR
--code to set ( sset.jsp )
<%@ page language="java" import="java.io.*"%>
<html>
<head>
<title>Set Session</title>
</head>
<body>
<%
session.setAttribute("name", "Sundaram Ramasamy");
%>
Session id : <%= session.getId() %>
<br>
<a href="http://localhost/funnel/sget.jsp">Click Here to get</a>
</body>
</html>
--- code to get ( sget.jsp )
<%@ page language="java" import="java.io.*"%>
<html>
<head>
<title>get Session</title>
</head>
<body>
<%
String name = (String)session.getAttribute("name");
%>
Session id : <%= session.getId() %>
<br>
Name : <%= name %>
</body>
</html>
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user