Category Archives: IdentityServer

Claims-based Identity & Access Control Training in February

I just got email confirming the February run of the “identity course” in Oslo. great! There are seats left and you can book here. Cu!  

Posted in .NET Security, ASP.NET, Azure, IdentityModel, IdentityServer, OAuth, WCF, WebAPI | Leave a comment

Thinktecture IdentityServer v2.1

I just uploaded a minor update. This includes the following changes: Fixed bugs in HRD screen SSL redirect filter uses configured SSL port now Fixed a bug in CookieTempData Added application recycle feature available here: http://thinktecture.github.com/Thinktecture.IdentityServer.v2/

Posted in IdentityServer | 9 Comments

ASP.NET Web API Security: The Web Host and Service

I will be using the same web hosted Web API service for the sample. The service is very simple: [Authorize] public class IdentityController : ApiController {     public ViewClaims Get()     {         return ViewClaims.GetAll();     } } …and the ViewClaims class simply returns … Continue reading

Posted in ASP.NET, IdentityModel, IdentityServer, WebAPI | 5 Comments

Using ASP.NET Profile as a Source for Claims in Thinktecture IdentityServer

If you are using the ASP.NET membership/roles/profile infrastructure in IdentityServer, we made it very easy in v2 to use the profile API to add per-user claims to outgoing tokens. Here’s how: 1 Enable ProfileMake sure the profile section is enabled … Continue reading

Posted in IdentityServer | 4 Comments

Embedding Thinktecture IdentityServer in your own Applications

Starting with v2 of identity server, the core engine and protocol implementations are separately available as a Nuget package. This allows re-hosting the core STS logic or the protocol endpoints inside your own applications. As a proof of concept, the … Continue reading

Posted in IdentityServer | 6 Comments

Thinktecture IdentityServer v2 RTM

Title says it all – I am glad we could get this done before the end of the year!! Besides bug fixes since the last beta version, we added two features: identity server core nuget package and profile editor. I … Continue reading

Posted in .NET Security, ASP.NET, IdentityModel, IdentityServer, OAuth, WCF, WebAPI | Leave a comment

Enabling Tracing in Thinktecture.IdentityServer

Most problems in IdentityServer can be determined by looking at the trace files. Here’s a quick how-to: 1. Make sure tracing configuration is included-  your web.config should contain this: <system.diagnostics configSource=“configuration\tracing.config“ />   2. Inspect the tracing configuration file. The following … Continue reading

Posted in IdentityServer | 1 Comment

Thinktecture.IdentityModel Nuget Package hits 10K downloads

Thanks!

Posted in .NET Security, ASP.NET, IdentityModel, IdentityServer, WCF, WebAPI | Leave a comment

More Compatibility between Thinktecture.IdentityModel JWT and Microsoft JWT

Reader centralbin comments: “In fact the reverse is also true : You can configure TT-STS as an IP-STS in ACS. The JWT tokens issued by TT-STS can also be consumed in ACS. The only “gotcha” is that you manually need … Continue reading

Posted in Azure, IdentityModel, IdentityServer, OAuth, WebAPI | 1 Comment

Questions/Feedback/Comments about Thinktecture IdentityModel and Server

For any questions, please use the issue track on github for IdentityModel and IdentityServer (and please not the comments on my blog). If you absolutely want to use StackOverflow, I am now monitoring the thinktecture-ident-model and thinktecture-ident-server tags.

Posted in IdentityModel, IdentityServer | Leave a comment