Pugz
Pugz

Reputation: 1029

IdentityManager.MembershipReboot vs IdentityServer3.MembershipReboot

What is the difference between these packages and how are they supposed to be used? Ultimately, I want to use Identityserver3 for OpenID Connect / OAuth, MembershipReboot for the user/roles store, and IdentityManager to manage the users/roles. Is there any documentation for this combo anywhere? Seems like a hodgepodge so far.

Upvotes: 0

Views: 93

Answers (1)

Scott Brady
Scott Brady

Reputation: 5598

IdentityManager.MembershipReboot is to allow Identity Manager to perform Create, Read, Update and Deletes on a Membership Reboot database.

IdentityServer3.MembershipReboot is to allow Identity Server to Read from a Membership Reboot database, allowing users to log in and generate the correct claims.

Identity Server and Identity Manager are two separate projects with no overlap, they do not combine.

Upvotes: 2

Related Questions