Re: back button when logged out

2011-05-01 Thread ael
Try SSO... http://jumpstart.doublenegative.com.au/jumpstart/examples/state/sharingacrossmultiplepages1 http://jumpstart.doublenegative.com.au/jumpstart/examples/state/sharingacrossmultiplepages1 -- View this message in context: http://tapestry.1045711.n5.nabble.com/back-button-when-logged-out

SOLVED Re: back button when logged out

2011-05-01 Thread Andreas Kerpe
Hi, This could look something like that (independent of caching - so you don't need to set headers): Layout.java (or a BasePage.java): Object onActionFromLogout() { loginService.logout(); return Logout.class; } the login-logout itself is running fine. Where do you add this two lines? This s

Re: back button when logged out

2011-05-01 Thread Christian Köberl
i try to implement a logout feature like yahoo, squirrelmail, etc. That means, when you klick "logout", you are redirected to a logout page. When pressing the browsers back button, you are redirected to the login page again. This could look something like that (independent of caching - so you d

back button when logged out

2011-04-30 Thread Andreas Kerpe
Hi, i try to implement a logout feature like yahoo, squirrelmail, etc. That means, when you klick "logout", you are redirected to a logout page. When pressing the browsers back button, you are redirected to the login page again. I've tried to implement that with: @Inject private Response respo