Losing session value
843840Apr 12 2002 — edited May 29 2002In a login screen I am entering username and password and putting the username by using session.putValue("vAgent",agentUser);
Now in another screen I am checking the username by using session.getValue("vAgent"). Strangely, after I login as agentuser, I am getting session.getValue("vAgent") as null in the second screen! This thing was working fine even a couple of days ago. But now it is getting null value.
I have used HttpSession session = request.getSession(true);
Can you please help?