vote up 8 vote down star
3

Is there an openID implementation in Java? I would like to use this in a tomcat application.

flag

63% accept rate

5 Answers

vote up 11 vote down check

openid4java

link|flag
vote up 1 vote down

I am currently using Openid4Java in a Grails application in Tomcat and it works quite well. There's a few issues with the (very old) binary that is on the download site code.sxip.com, namely that it doesn't work at all with Yahoo or myopenid.com implementations. If you want to use it you can find a binary on the projects Google groups, or get the source code from the Subversion repository and built it from there. It's quite trivial, basically just an ant script you need to run.

link|flag
Another issue I ran into was that I needed to setEnforceRpId(false) on the ConsumerManager to make it work when developing on localhost. – stian Dec 31 '08 at 13:18
vote up 2 vote down

Spring Security provides an OpenID authentication method too

link|flag
vote up 2 vote down

If you don't mind using a service there is RPX

link|flag
RPX saved me!! I struggled for days to implement all of the features necessary to get OpenID to work. In the end I still couldn't get it to work. I'm using RPX now and it only took a few hours to get up and running. – Trevor Allred Oct 6 at 23:08
vote up 7 vote down

The only one I have looked into is OpenID4Java by there is are more options listed on at http://wiki.openid.net/Libraries.

I recommend looking at Using OpenID on TheServerSide.COM for a good introduction with some valuable code snippets.

At the moment I am leaning towards implementing the authentication and authorization in the web tier using mod_auth_openid. But still make my application an authentication provider for people who don't want to know they are using OpenID.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.