[Wicket-user] Wicket with acegi security.

2007-07-10 Thread ernie25
Hi i am Marcin and i am interested in project Acegi and Wicket-auth-roles. I have a question for this project. Is acegi only takes care of the authentication and Wicket-auth-roles does authorization? Or acegi can take care of authorization and Wicket take a authentication ? SO my question is

Re: [Wicket-user] Wicket with acegi security.

2007-07-10 Thread Thies Edeling
i am Marcin and i am interested in project Acegi and Wicket-auth-roles. I have a question for this project. Is acegi only takes care of the authentication and Wicket-auth-roles does authorization? Or acegi can take care of authorization and Wicket take a authentication ? SO my question is

Re: [Wicket-user] Wicket With Acegi

2006-10-26 Thread sunraider
Thank you Eelco, I have a requirement to do a database authentication / authorization as well as LDAP based authentication so to begin with I have to first authenticate the user and Acegi has a clean solution of using the ProviderManager concept. It checks for ldap as well as db for user login.

Re: [Wicket-user] Wicket With Acegi

2006-10-26 Thread Erik van Oosten
Hi, Here is an example (we're using wicket-auth-roles). We use Spring to inject the authentication manager into the application. Regards, Erik. --8-- public class MySession extends AuthenticatedWebSession { .. constructor,

Re: [Wicket-user] Wicket With Acegi

2006-10-26 Thread sunraider
Thanks a million Erik. This will really help me to get going. I really appreciate your quick response. Sunraider Erik van Oosten wrote: Hi, Here is an example (we're using wicket-auth-roles). We use Spring to inject the authentication manager into the application. Regards,

[Wicket-user] Wicket With Acegi

2006-10-20 Thread Sajeev Nair
Hi, Are there any samples for Wicket with Acegi ? I am working on a project which requires me to work with Wicket and Acegi for security. Any help in this regard will be highly appreciated. Thanks in advance. Sunraider _ Sexy,

Re: [Wicket-user] Wicket With Acegi

2006-10-20 Thread Eelco Hillenius
Nope, not at this time. How do you want to/ need to employ Acegi? URL-based authentication could be rather tricky to achieve, but if you just use the authorization model of Acegi, you should be able to plug in your own IAuthorizationStrategy that uses Acegi without too much of a hassle. Eelco