2

I have a ASP.NET based CMS which i use to setup websites. This CMS uses a standard ASP.NET membership mechanism, and it can work with claims based / STS authentication.

Now i want to setup a set of 4 websites and a login page/portal that sits in front of these websites, which users can use login to one of these websites. During the login process some database setting has to determine to which website the user has to be logged in and redirected to.

Is there some project or code example anyone can give which i can use as a start to develop such a STS service?

Tys
  • 3,592
  • 9
  • 49
  • 71

1 Answers1

1

The WIF 3.5 SDK has a sample here. Download the sdk and install the sample by copying it into the templates folder for VS.

Thinktecture has a sample .NET 4.5 STS here

There is also a WIF 4.5 example STS in this sample

stombeur
  • 2,704
  • 22
  • 45
  • All this 3.5 stuff seems to be deprecated. And also when i search for the 4.0/4.5 version of this, i seems that i'm looking at examples which are already deprecated. – Tys Mar 10 '14 at 10:26
  • Does anyone have a recent, .NET 4.5 based, example for building a custom STS? – Tys Mar 10 '14 at 10:27
  • See the thinktecture example headline: 'Thinktecture IdentityServer is a light-weight security token service built with .NET 4.5, MVC 4, Web API and WCF.' – stombeur Mar 11 '14 at 10:36
  • It took some time to get this thing up and running, but by now the Thinktecture server does seem to be what we were looking for. Thanks! – Tys Mar 14 '14 at 17:42