deamon
deamon

Reputation: 92437

How to integrate OpenID into GlassFish?

I want to integrate OpenID as an authentication mechanism into GlassFish 3.1 (preview). The Development Guide says that JSR 196 could be used to implement custom authentication mechanisms like OpenID.

Is there already an OpenID authenticator for GlassFish conforming to JSR 196? Or is there a tutorial how to write one (somewhere in the blogosphere)?

Upvotes: 5

Views: 1218

Answers (3)

albogdano
albogdano

Reputation: 2840

There's an even simpler way of doing it - by using the Authentic Roast. library. I wrote my own OpenID authenticator, plugged into glassfish 3 and it works great!

Upvotes: 0

Pascal Thivent
Pascal Thivent

Reputation: 570345

For another implementation based on the less experimental OpenID4Java (at least I think so, the OpenID extension is still in alpha and is clearly less widely used than OpenID4Java), see OpenID ServerAuthModule (JSR-196) with OpenID4Java that the same author posted last week.

Upvotes: 1

BalusC
BalusC

Reputation: 1108722

You can use the OpenID extension of the OpenSSO project. Here's a blog about it (note, it exist of 3 parts): part I, part II, part III.

Update: the links in the blog itself were broken (unnecessarily hardcoded with port 8081), so I added the three correct links.

Upvotes: 0

Related Questions