Re: [Wicket-user] Login to wicket-app from another site

2006-12-22 Thread Erik van Oosten
You do not have to use the existing signin page. You could write a page that has a constructor with 1 parameter of type PageParameters. Then mount that page to some URL and call it directly from your other application. The username and password can be in post parameters or in the URL directly.

Re: [Wicket-user] Login to wicket-app from another site

2006-12-21 Thread Konstantinos Lazouras
: Igor Vaynberg [EMAIL PROTECTED] To: wicket-user@lists.sourceforge.net Sent: Wednesday, December 20, 2006 11:18:51 PM Subject: Re: [Wicket-user] Login to wicket-app from another site if they are on a different server then just use an sso [1] solution [1] http://www.ja-sig.org/products/cas/ -igor

[Wicket-user] Login to wicket-app from another site

2006-12-20 Thread Konstantinos Lazouras
Hi all, I have a wicket application running, that has a login page, where user puts username and password and continues to Home.class. That works fine. Now I need to bypass the login page, coming from a site (e.g. siteA, with its own username and passwd fields and not using wicket) and go

Re: [Wicket-user] Login to wicket-app from another site

2006-12-20 Thread Igor Vaynberg
i suppose sitea can put the username into session then either your login page looks for that username in session and if there uses restartresponseexception to redirect to home page or if you are using an authorization strategy then that bypass the login page -igor On 12/20/06, Konstantinos

Re: [Wicket-user] Login to wicket-app from another site

2006-12-20 Thread Konstantinos Lazouras
Thanks Igor, I 'll try this and get back with results tomorrow, Konstantinos - Original Message From: Igor Vaynberg [EMAIL PROTECTED] To: wicket-user@lists.sourceforge.net Sent: Wednesday, December 20, 2006 7:04:10 PM Subject: Re: [Wicket-user] Login to wicket-app from another site i

Re: [Wicket-user] Login to wicket-app from another site

2006-12-20 Thread Johan Compagner
my question is is SiteA on the same server? I have worked on another one that is really van SiteA on ServerA to a ServerB with the wicket app. Then that SiteA just goes to a special mount in wicket. With the username and a special uuid. johan On 12/20/06, Igor Vaynberg [EMAIL PROTECTED]

Re: [Wicket-user] Login to wicket-app from another site

2006-12-20 Thread Igor Vaynberg
if they are on a different server then just use an sso [1] solution [1] http://www.ja-sig.org/products/cas/ -igor On 12/20/06, Johan Compagner [EMAIL PROTECTED] wrote: my question is is SiteA on the same server? I have worked on another one that is really van SiteA on ServerA to a ServerB