Hi! I ran into session-issue with a webapp. There are situations when it would be nice for a user (same browser/same machine/same webapp) to have the possibility to login twice and thus have two different JSESSIONIDs.
There is also a problem if the user opens a second browser-window or -tab, because the user may change session-data in the one window and thus will have invalid data in the other window afterwards. Example: He user is logged and requests a jsp-page that has the following session-bean: <jsp:useBean id="someBean" scope="session" class="someClass" /> The user also opens the jsp-page in another browser-window (or -tab). Now he starts editing the data (provided in the form) in one of those windows and then submits it to the server. The server verifies and afterwards stores the data in db. As a result the session-variable "someBean" gets reloaded/updated. If the user now tries to update the date in the other window, there will be a problem, because the session-data "someBean" has already been updated and the user is going to send outdated information to the server. What are the possible solutions to this issue(s)? Maybe the RSEF (the rudimental servlet extension framework) (http://java.sun.com/developer/technicalArticles/Servlets/ServletControl/) would help me with creating multiple sessions for the same users? And how would someone solve the problem with the problem of multiple browser windows? TIA, Daniel --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]