I just observed this in the code..
private HttpServletRequest req;
private HttpServletResponse res;
public void doPost(HttpServletRequest req, HttpServletResponse res)
throws java.io.IOException, ServletException {
try {
this.req = req;
this.res = res;
}
Is this instance variables?
if it is a instance variable, then can you tell me how does instance variables affect in the session replication?
and what is the solution for it?