Re: Is there any way in Struts2 to handle session sharing accross browsers

2010-01-02 Thread ManiKanta G
Hi, May be Spring Security will do the stuff :) Regards, ManiKanta G twitter.com/ManiKantaG On Wed, Dec 30, 2009 at 6:43 PM, Gabriel Belingueres wrote: > Session data handling is the same for all frameworks based on the > Servlet and JSP specification, and AFAIK S2 doesn't provide any helper >

Re: Is there any way in Struts2 to handle session sharing accross browsers

2009-12-30 Thread Gabriel Belingueres
Session data handling is the same for all frameworks based on the Servlet and JSP specification, and AFAIK S2 doesn't provide any helper to handle it differently (one exception is the token interceptor to avoid double submits.) I think you should design the application specifically to handle this

Re: Is there any way in Struts2 to handle session sharing accross browsers

2009-12-30 Thread Paweł Wielgus
t if > I open a new browser instance altogether. > > > -Original Message- > From: Bharat_2.0 [mailto:bharatesh.huchchanna...@wipro.com] > Sent: Wednesday, December 30, 2009 1:47 PM > To: user@struts.apache.org > Subject: Re: Is there any way in Struts2 to handle session sha

RE: Is there any way in Struts2 to handle session sharing accross browsers

2009-12-30 Thread Sandeep G. Shenvi
: Wednesday, December 30, 2009 1:47 PM To: user@struts.apache.org Subject: Re: Is there any way in Struts2 to handle session sharing accross browsers That is not a new new session its parent browser session copied, you can give try. -- View this message in context: http://old.nabble.com/Is-there

Re: Is there any way in Struts2 to handle session sharing accross browsers

2009-12-30 Thread Bharat_2.0
That is not a new new session its parent browser session copied, you can give try. -- View this message in context: http://old.nabble.com/Is-there-any-way-in-Struts2-to-handle-session-sharing-accross-browsers-tp26964416p26965019.html Sent from the Struts - User mailing list archive at Nabble.c

Re: Is there any way in Struts2 to handle session sharing accross browsers

2009-12-29 Thread Paul Benedict
When the user presses CTRL+N in IE, a new browser instance is started. That's not another view of the current browser session, but a whole new session. There's nothing that can be done about this in Struts or anything else. On Wed, Dec 30, 2009 at 1:12 AM, Struts-User wrote: > > Thanks Paul, What

Re: Is there any way in Struts2 to handle session sharing accross browsers

2009-12-29 Thread Struts-User
Thanks Paul, What I mean is not exaclty one session per user rather preventing or detecting the session which is getting copied when any one does CTRL+N or in IE7 opens application new TAB. In above said cases session remains to be same however session data is replaced with the recentely logged i

Re: Is there any way in Struts2 to handle session sharing accross browsers

2009-12-29 Thread Paul Benedict
Some extreme financial sites only allow one session per user. They track in their database when a user logs in, and the user must remain on that session ID for X minutes or log out. Consequences: 1. If the user shuts his browser by accident, ooops! X minutes must pass until the original session ti

Re: Is there any way in Struts2 to handle session sharing accross browsers

2009-12-29 Thread Paul Benedict
What does "handle" mean to you here? On Wed, Dec 30, 2009 at 12:05 AM, Struts-User wrote: > > Hi All - Is there any way in Struts2 to handle session sharing across > browsers. > My problem: > User logs in -> session created, user does CTRL+N and opens child window > now he logs in as admin-> sess