Re: Adding openid-authentication to spring/wicket-auth-roles?

2010-12-31 Thread Zilvinas Vilutis
In Spring you have to implement your own AuthenticationProvider ( e.g. extend AbstractUserDetailsAuthenticationProvider ) which supports() your own, e.g. OpenIDAuthenticationDetails which extend AuthenticationDetails. Implement your authentication logic here. Register it as a bean and add it to

Adding openid-authentication to spring/wicket-auth-roles?

2010-12-29 Thread Tom Howe
I have followed the instructions at https://cwiki.apache.org/WICKET/spring-security-and-wicket-auth-roles.html to integrate basic user/pass authentication using Spring security into my wicket app. How would I go about adding open-id authentication? Spring security supports openid-login as a config

Re: Adding openid-authentication to spring/wicket-auth-roles?

2010-12-29 Thread Eric Hamel
This might help... http://www.ibm.com/developerworks/java/library/j-openid/index.html On Wed, Dec 29, 2010 at 5:04 AM, Tom Howe tomh...@artcore.com wrote: I have followed the instructions at https://cwiki.apache.org/WICKET/spring-security-and-wicket-auth-roles.htmlto integrate basic

Re: Adding openid-authentication to spring/wicket-auth-roles?

2010-12-29 Thread Tom Howe
Hi Eric, I have seen this and maybe it is the approach I should take, however it makes no mention of Spring and Id like to be able to have it load the user roles from my spring config. If I use openid4java http://code.google.com/ to determine whether I can authenticate, how do I then tell Spring