Two Questions relate to Jsp.
1 session maintain from one server to other.
how to set value in session of jsp file so i will get same value on other server ?
2 if i want to use declared parameter of included jsp to main jsp page then how ?
refer this
one.jsp
---------------
...
<%
String xyz='xyz';
%>
...
two.jsp
---------------
...
<jsp:include file="one.jsp"/>
<%
String zbc = xyz; //can i use this ?
%>
...