Re: What do you think about my Session flow?

2011-03-11 Thread Thomas Broyer
request.getUserPrincipal() != null ? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Re: What do you think about my Session flow?

2011-03-11 Thread Jambi
Well, it would help if someone could come up with a usefull tutorial or with a little bit more information. I haven´t found a useful guide but maybe I was searching for a to specific GWT implementation. This is a little bit hard to understand for me. Probably I should lern more about servers, but

Re: What do you think about my Session flow?

2011-03-11 Thread nacho
I have a login.jsp with the login form. And a hostedPage.jsp where the user is redirected after his logged in. Also I have a MyServiceServlet that extends RemoteServiceServlet. In this class I overrided onBeforeRequestDeserialized and I check if the user if logued in. If he is not, I throw an

What do you think about my Session flow?

2011-03-10 Thread Jambi
Hey there, I have implemented a Session management for the first time and I would like to know if it is an appropriate way to do it. My Flow looks like this: 1. User loggs in 2. Server checks login informations If the login informations are correct: 3. Server generates a SessionID, stores it

Re: What do you think about my Session flow?

2011-03-10 Thread khiem nguyen
that's what i'm also doing now. would be interested in comments. i use google's guava for the expiration stuffs (concurrentHashmap) cheers On Thu, Mar 10, 2011 at 11:15 AM, Jambi michael.lukaszc...@googlemail.comwrote: Hey there, I have implemented a Session management for the first time

Re: What do you think about my Session flow?

2011-03-10 Thread dmen
You should be bothering with any of this stuff. Session management is being handled by your java server (e.g. Tomcat) automatically. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: What do you think about my Session flow?

2011-03-10 Thread Jambi
And how to you verify the user as logged in in each request? I don´t get it ;) On 10 Mrz., 21:50, dmen dmenou...@gmail.com wrote: You should be bothering with any of this stuff. Session management is being handled by your java server (e.g. Tomcat) automatically. -- You received this message