gwt client session time out

2011-09-08 Thread Sanjay Jain India
I am using gwt 2.3 with gwtp framework.In this application I wan to maintain a session time of 5 mins.This means if current user is not doing up to 5 min and he comes after five min then on his first event/ action on screen a he should be be logged out. In gwt there is class named Timer which can b

Re: Client session

2010-07-15 Thread Prashant Hegde
n Bachert Sent: Thursday, July 15, 2010 6:02 PM To: Google Web Toolkit Subject: Re: Client session Hi, I am not sure what you mean with client side sessions? Do you mean to pass the HttpSession (maybe just the id) to the client side? But for what reason? It is

Re: Client session

2010-07-15 Thread munna kaka
google-web-toolkit@googlegroups.com [mailto: > google-web-tool...@googlegroups.com] On Behalf Of Stefan Bachert > Sent: Thursday, July 15, 2010 6:02 PM > To: Google Web Toolkit > Subject: Re: Client session > > Hi, > > I am not sure what you mean with client side sessions? > >

RE: Client session

2010-07-15 Thread Feldman, Nir (48Upper)
: Thursday, July 15, 2010 6:02 PM To: Google Web Toolkit Subject: Re: Client session Hi, I am not sure what you mean with client side sessions? Do you mean to pass the HttpSession (maybe just the id) to the client side? But for what reason? It is already there. Either due to url-rewriting or by cookie

Re: Client session

2010-07-15 Thread Stefan Bachert
Hi, I am not sure what you mean with client side sessions? Do you mean to pass the HttpSession (maybe just the id) to the client side? But for what reason? It is already there. Either due to url-rewriting or by cookie. Stefan Bachert http://gwtworld.de On 9 Jul., 19:48, mk wrote: > How to i

Re: Client session

2010-07-14 Thread Peter Simun
And what about using DI (gwt-gin) for injecting the client session? Anyway, the static client session is perfectly ok for the small application. You can inspire also in acris-security implementation: http://code.google.com/p/acris/wiki/SecurityClient#Client_session Peter On 12. Júl, 20:51 h., mk

Re: Client session

2010-07-12 Thread mk
I am sure many experts out there had already found solution to below. Thus please respond to original question. On Jul 9, 11:48 am, mk wrote: > How to implement a client side session ( and any best practices to > implement them). > Is it to just create a static variable ? > > How do two different

Client session

2010-07-12 Thread mk
How to implement a client side session ( and any best practices to implement them). Is it to just create a static variable ? How do two different MVP widgets share MODEL data (i.e. user input data). How do two different MVP widgets share VIEW data ( for example if display of one widget is depende

Re: Client Session Timeout

2010-06-16 Thread Mike Jiang
Except for that, you can set a fixed timeout in your app's web.xml. For instance, 15 Here the time is in minute. Mike J. On Wed, Jun 16, 2010 at 9:44 AM, jhulford wrote: > The session interface has the method invalidate() in it to manually > force the session to expire. You can add so

Re: Client Session Timeout

2010-06-16 Thread jhulford
The session interface has the method invalidate() in it to manually force the session to expire. You can add some sort of filter in your server side RPC processes that uses whatever heuristic you need to determine when to time out the session and just do it manually. On Jun 16, 8:34 am, Paul Gren

Client Session Timeout

2010-06-16 Thread Paul Grenyer
Hi All We have an application that makes regular RPC calls, on a timer, to the client. This has the side effect of the user's session never expiring. Because of the sensitive nature of the data we're handling in our application, we need the user's session to timeout. How can this be done? -- Th