My Security-config.xml has following lines to provide support for openId and request two attributes (name,email) from OpenId Providers...later I will use these(and few more) attributes in more useful manner.
<security:openid-login
login-page="/openid/auth/login"
authentication-failure-url="/openid/auth/login?error=true"
default-target-url="/openid/main/common">
<security:attribute-exchange>
<security:openid-attribute name="email" type="http://schema.openid.net/contact/email" required="true" count="2"/>
<security:openid-attribute name="name" type="http://schema.openid.net/namePerson/friendly" />
</security:attribute-exchange>
</security:openid-login>
and I am accessing the parameters using following code snippet ....
OpenIDAuthenticationToken token = (OpenIDAuthenticationToken) SecurityContextHolder.getContext().getAuthentication();
List<OpenIDAttribute> attributes = token.getAttributes();
for(OpenIDAttribute opai : attributes){
System.out.println("Attribue "+opai.toString());
}
For testing purposes I am using myopenid.com, But the problem is that nothing is being printed on console.... Can any one help me in finding the problem am I misunderstanding the relationship between Spring Security and open Id...? I am using Spring 3.0.5 (core, security, web flow, MVC).
Any tutorials, links will be of gr8 help....
Thanks,