Page aliasing and Request interception

2007-08-30 Thread Craig Tataryn
Hi, this is my first post so please take it easy on me! I have two questions: 1) Is there a way to alias the uri which activates a specific Wicket page? I know about mount() and how you can alias a package name, but I don't know how to explicitly alias a page name (instead of /UserLoginPage I

Re: Page aliasing and Request interception

2007-08-30 Thread Matej Knopp
mountBookmarkablePage could help you here. Wicket can't help you with autentication, but for authorization, you can implement IAuthorizationStrategy which allows you to protect various bits of wicket. -Matej On 8/30/07, Craig Tataryn [EMAIL PROTECTED] wrote: Hi, this is my first post so

Re: Page aliasing and Request interception

2007-08-30 Thread Igor Vaynberg
On 8/30/07, Craig Tataryn [EMAIL PROTECTED] wrote: 2) Can someone direct me to some sample code that demonstrates how to enforce user authentication checks on any request made to my Wicket app? Basically, I want to do a check to see if a user has logged into the site before any action is

Re: Page aliasing and Request interception

2007-08-30 Thread Craig Tataryn
Igor, Matej thank you both. /tataryn:craig On 8/30/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 8/30/07, Craig Tataryn [EMAIL PROTECTED] wrote: 2) Can someone direct me to some sample code that demonstrates how to enforce user authentication checks on any request made to my Wicket app?