Re: Gwt page refresh issue

2010-10-25 Thread Jeff Schwartz
Refresh reloads your javascript and runs it from the top so if the first thing your app does is display the login in screen then that is what will be displayed when the user refreshes the page. Use history and HistoryListener to control your user's navigation. A common patter is the following:

Re: Gwt page refresh issue

2010-10-25 Thread Jeff Schwartz
in these techniques is that you should always include the user's session id (obtained from the cookie after their first login for instance) in all payloads to the servlet and compare that to the current session id reported by request's session object. Jeff On Mon, Oct 25, 2010 at 11:26 AM, Jeff

<    1   2   3