Is there an openID implementation in Java? I would like to use this in a tomcat application.
closed as not constructive by nhahtdh, krock, Bill the Lizard♦ Apr 27 at 14:59
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
|
|||
|
|
|
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. |
|||
|
|
|
I've been searching for this myself as well. Here are my findings:
I have not found a general java openid 2.0 provider yet that I can use on GAE. |
|||||
|
|
Spring Security provides an OpenID authentication method too |
|||||
|
|
If you don't mind using a service there is RPX |
|||
|
|
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. |
|||
|