Re: Bookmarkable Links Session

2010-03-17 Thread Mauro Ciancio
Anteoine, thanks for the reply. It worked great. Cheers. On Tue, Mar 16, 2010 at 5:21 PM, Antoine van Wel antoine.van@gmail.com wrote: When you have a stateless page, no session is created when you land on such a page first, or to be more precise: a temporary session is created. So that

Bookmarkable Links Session

2010-03-16 Thread Mauro Ciancio
Hello everyone, I'm developing an application that uses a lot of bookmarkable links in order to get pretty urls. When I log in with my userpassword, I'm redirected to the home page. This behavior is ok, but the session appears to be not created, so i still see the login link (and not the

Re: Bookmarkable Links Session

2010-03-16 Thread Antoine van Wel
When you have a stateless page, no session is created when you land on such a page first, or to be more precise: a temporary session is created. So that should explain the difference you see. Calling Session.get().bind() when logging in should fix that. Better, call