My problem is not my application. It is working fine if I am logging in with one user, but when I am logging in by multiple users through different user from different instances of IE8 browser my later session data are overriding the former one. This is because both of the IE browsers are using same session id. It is happening because of session sharing of IE8. There is only one session is maintained for one application by how many user I am logging in does not matter. In fact I want to maintain one session for each user.
Like when I am logging in gmail in one browser. If type gmail on another browser, it is logging in automatically. I do not want this in my application. I should get a login by another user at the time I perform an independent operation.
My application is uses Struts, Spring, Hibernate & JBoss application server.
Now tell me how I should proceed ?