Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between OpenID Provider and OpenID WebRing SSO Provider?

I'm looking at the DotNetOpenAuth samples and there are two OpenID provider samples; and OpenID Provider and an OpenID Web Ring SSO Provider.

Does anyone know the differences between the two, and in which scenario each should be used? I'm specifically looking to see when the Web Ring SSO Provider should be used. I know what the OpenID Provider offers.

To give some context; I need to put together an OpenID provider to provide a single sign-on solution to multiple web apps that I'm working on.

like image 315
Chris Pietschmann Avatar asked Sep 03 '12 20:09

Chris Pietschmann


1 Answers

The SSO sample demonstrates more of what you're looking for, from the sound of it. The OpenIdProvider is more of an Internet facing provider that serves all relying parties, while the WebRingSSOProvider is targeted at only authenticating users for specific RPs, allowing them to implicitly log the user in if they're already logged in, within a trusted network of sites.

like image 142
Andrew Arnott Avatar answered Oct 24 '22 21:10

Andrew Arnott