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
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
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
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