Mahesh,
HOw did you
test? By 'Somehow the session id of one user is getting transferred to 2 to 3 users' , do you mean, one user is able to see other user related data which are put in session?
If so it could be static/instance vars problem of
servlets. If you want each user to have unique session data, those session objects must be local vars inside doGet or doPost in case of Servlet, NOT instance or static vars, since static and instance vars are shared between all user requests.
In case of JSP, they must be declared within <% %> tags NOT within <%! %> tags.
regds
maha anna
[This message has been edited by maha anna (edited March 26, 2001).]