Questions tagged [thinktecture-ident-server]

Thinktecture IdentityServer is an open source security token service based on Microsoft technologies designed around Claims Based Authentication and Windows Identity Foundation.

Thinktecture IdentityServer is an open source security token service based on Microsoft technologies designed around Claims Based Authentication and Windows Identity Foundation.

Version 2: https://github.com/IdentityServer/IdentityServer2/

Version 3: https://github.com/IdentityServer/IdentityServer3/

337 questions
0
votes
1 answer

How to check user role in a resource server when using Thinktecture.IdentityServer.v3

I download [Thinktecture.IdentityServer.v3][1] and the corresponding clients projects. I want to check the user role in the SampleAspNetWebApi project. So i change the sample method as follows [Authorize(Roles="Admin")] public class…
Alborz
  • 6,843
  • 3
  • 22
  • 37
0
votes
1 answer

ACTAS with ADFS in thinktecture identity server v2

I have to authenticate web users with STS (Thinktecture V2 STS). Following are my applicaitons: 1 asp.net web applications (RP) - act as frontend 2. Backend Web API (RP) - provides data based on claim (lets say c1, c2) 3 STS (Thinktecture identity…
user1213831
  • 309
  • 7
  • 22
0
votes
1 answer

How to detect if WSFederationSession has expired or ended?

I have a several methods in controller: public ActionResult Issue() { var message = WSFederationMessage.CreateFromUri(HttpContext.Request.Url); // sign in var signinMessage = message as SignInRequestMessage; if (signinMessage !=…
Olegs Jasjko
  • 2,128
  • 6
  • 27
  • 47
0
votes
2 answers

Identity Server v3 can't find endpoints

I’m trying to get Identity Server v3 up and running. Below is what I've done. Created an empty ASP.NET web project Copied the StartUp and config files from the SelfHost (Minimal) (http://goo.gl/ojOjSJ) sample project Installed the following Nuget…
Dale Alleshouse
  • 1,627
  • 2
  • 17
  • 24
0
votes
1 answer

Thinktecture IdentityServer with ASP.NET Identity - already authenticated user

I'm creating an OpenId Connect host using IdentityServer v3, backed by ASP.NET Identity. In cases where the user is already logged in to the host application using ASP.NET Identity, how can I use the existing session, rather than prompting the user…
Travis Collins
  • 3,982
  • 3
  • 31
  • 44
0
votes
0 answers

Using SSO with multiple webapplications with their own membership implementation

I'm trying to find out if there is a way to connect multiple webapplications through SSO. I've setup Thinktecture v2 and it's already in use for some other projects. So that works fine. Each of the applications are already using the .Net Membership…
0
votes
0 answers

Thinktecture Idenity Server Logout issue

For our MVC Application we use Thinktecture Identity Server for our claims. Everything works expected but some time randomly when we logout the logout is not happening and still the session is there. When we click logout, it take to the home…
Badri Prasad
  • 107
  • 1
  • 1
  • 9
0
votes
1 answer

How can I specify the home realm in wpf client?

we developed applications with custom STS as identity provider. Now we planning to use thinktecture identity server (Idsrv) as primary and ADFS as secondary to replace our custom STS. I enabled WS-Federation protocol in Idsrv and added Idsrv and…
Vamsy
  • 144
  • 4
  • 16
0
votes
1 answer

Using Sales Force Identity Provider as a Provider for Thinktecture Identity Server

I am trying to connect the Thinktecture Identity Server to Sales Force, using the Sales Force Identity provider as a provider for the Thinktecture Identity server. The information I am lacking is the Entity ID and the ACS URL to enter within the…
Jim
  • 1
0
votes
2 answers

Sample HTTPClient code to authenticate against Embedded STS

We are using Embedded STS locally to test our ASP.Net web application. I'm creating a console app to call some of the WebAPI methods and to do some load testing on our app. I'd like to test using a set of users with certain permissions. For our…
Szymon Rozga
  • 17,971
  • 7
  • 53
  • 66
0
votes
1 answer

Configure Login page for multiple application using Thinktecture IdentityServer

We are using Thinktecture IdentityServer for our applications to mange the Authentication Process. We need to configure the login page based on the requested application. For Example if site one is calling the login page then logo1 should be…
0
votes
0 answers

SessionAuthenticationModule "validFrom" appears invalid with ThinkTecture

I have an ASP.NET website with two IDP servers running ThinkTecture software authenticating the users using WS-FED. When I login with IDP server #1, I can login fine, the IDP issues the token to my website and I get a session token as expected and I…
0
votes
1 answer

Remote Validation Incorrect URL

I am using MVC's remote validation in my web application. When I attempt to use the Remote[] validation attribute [Remote("EmailExists", "Validation")] public string EmailAddress { get; set; } I expect this email address to reach out to my…
0
votes
1 answer

Slow connection at the first connect on MVC Application + Thinktecture IdentityServer

We are using MVC Application and Thinktecture Identity Server. When first user connects to the application it takes >30+ seconds and subsequent connections are very quick (<3s) for home page and also for login page (Thinktecture page) We are tried…
0
votes
1 answer

ThinkTecture IdentityServer Authorize Directory

I am attempting to use Thinktecture Identity Server v2 as a federated identity manager. I have the identity server up and running and authentication works fine. My issue is that my test site I am using to test the authentication redirects to the…