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

Connecting IdSrv to LDAP

I've seen samples that connect an on premises IdSrv instance to ADFS, but I can't find one that connects to a LDAP IP (AD, not ADFS). Is there a sample or documentation somewhere on this? Thanks.
0
votes
1 answer

Do I need oauth for access token based authentication

I have a Single Page Application for non-/mobile html5 browsers getting data from a RESTful HTTP API with asp.net web api. We use OWIN self hosting running in a windows service. I do not want cookie based authentication. I would like to authenticate…
Elisabeth
  • 20,496
  • 52
  • 200
  • 321
0
votes
1 answer

web-app authentication with users from any domains

Which authentication mechanism should i go with if i want my web-app to support users with following IP's and provide a single-signon experience with other linked web-apps 1. Google 2. Microsoft 3. Facebook 4. ArbitaryDomain1 5. ArbitaryDomain1 I…
0
votes
1 answer

Thinktecture in windows azure web sites SSL issue

I have deployed the thinktecture identity server in the windows azure website role.The issue I am facing is with the SSL certificate.If I don't have a custom domain name I am forced to use *.azurewebsites which already have a certificate from…
sp9
  • 755
  • 3
  • 11
  • 22
0
votes
1 answer

Load balancer or IIS - which one is causing my urls to be case sensitive

We have two Windows 2008 R2 serveres set up with a Cisco Ace-30 load balancer, and a few MVC and WebForms apps (.net 4.5 and 4.5.1) with federated authentication (thinktecture). The load balancer is configured with ssl, but the traffic from load…
Larsi
  • 4,654
  • 7
  • 46
  • 75
0
votes
2 answers

Getting detailed user membership information from Thinktecture Identity Server

I'm using Thinktecture Identity Server for SSO with some apps. The idea is that account information will be stored on the server in the claims information. So groups user membership and other hierarchies can exist on the SSO server. Then when some…
QueueHammer
  • 10,515
  • 12
  • 67
  • 91
0
votes
1 answer

Thinktecture IdSrv - set the used identity provider name as a claim

I am using the awesome ThinkTecture Identity (IdSrv) and Authorization (AS) servers. I have IdSrv setup with multiple Identity Providers (Facebook, ADFS, Google etc). I have the flows demo running and everything works perfectly, I am currently…
morleyc
  • 2,169
  • 10
  • 48
  • 108
0
votes
2 answers

Thinktecture Identity Server with OAuth Implicit Login

I am trying to use javascript to login to identity server in OAuths Client. I can login and return to the return webpage successful. I met a problem is why the Thinktecture identity sevrer always return '#' not '?' before parameters in querystring…
Aggis Wu
  • 99
  • 1
  • 10
0
votes
1 answer

How Do I Access Profile Info From Relying Party?

I have Thinktecture Identity Server 2 running locally for development purposes and have set up Microsoft Membership as its User storage. I'm using SqlRoleProvider and something called SqlTableProfileProvider and that's all working fine and dandy.…
0
votes
1 answer

thinktecture identityserver 2 - bouncing between app and IdP

We have 3 applications deployed on the same server. 1 of the applications works as expected, allows us to identify against the thinktecture identityserver 2, without issue. The other 2 applications have the following pattern: Go to the application…
0
votes
1 answer

Thinktecture Identity Server v2 using ASP.NET identity v2

I have already tried to use out of box of ASP.NET membership provider and MembershipReboot. but I also would like to know is there any way that I can integrate ASP.NET Identity V2?
Aggis Wu
  • 99
  • 1
  • 10
0
votes
1 answer

Thinktecture Identity Server vs MembershipReboot Multi Tenancy

I tried to install two identity servers and both of them use the same MembershipReboot database with Multi Tenancy setting in identity server web.config. (defaultTenant="A" multiTenant="false") and (defaultTenant="B" multiTenant="false") then I can…
Aggis Wu
  • 99
  • 1
  • 10
0
votes
1 answer

How to add samlResponse parameter to thinktecture response

I am trying to use Thinktecture Identity server v2 with a 3rd party web application which expect SAMLResponse and RelayState as parameters. When i checked the idp response in fiddler all i see is "wresult" as parameter with the token as value and…
0
votes
2 answers

Decode ThinkTecture Identity Server JWT token

I have managed to get back a JWT token from Identity Server using OAuth2 and would like to extract the claims from the token. When I use a token decoder such as https://developers.google.com/wallet/digital/docs/jwtdecoder, I can peek inside the…
0
votes
1 answer

How to combine MembershipReboot and Thinktecture.IdentityServer?

I was able to download and run locally, the MembershipReboot project. I was able to download and run on our test server the Thinktecture IdentityServer project. No major issues with each one by themselves. Now, I want to use MembershipReboot as…