Questions tagged [sts-securitytokenservice]

Security Token Service. A web service where a user (or client software) presents some form of credentials (e.g., username/password), and if valid the result is a 'security token' that can be used to access a web application or web service. Often used for implementing single sign-on (SSO).

Security Token Service: A web service where a user (or client software) presents some form of credentials (e.g., username/password), and if valid the result is a 'security token' that can be used to access a web application or web service. Often used for implementing single sign-on (SSO).

167 questions
0
votes
1 answer

SessionSecurityTokenReceived called too many times

I have a Web Forms application which makes use of WIF and Claims based authorization. Im using Thinktecture IdentityServer v2.5 for my STS with my custom login page and custom authentication against database and then issuing the token. Its all…
0
votes
2 answers

Claims Based Authentication from SharePoint to ASP .NET

I am attempting to create a single sign on SharePoint portal. I have tried a variety of methods so if someone has a better suggestion then I am all ears, but I am attempting to do this via claims based authentication. I have a SharePoint Web…
0
votes
0 answers

Get Session token using STS AWS using PHP Codeigniter

I'm new to AWS can anyone please help me how to generate session token using STS API to upload files to S3 Brief: I went through AWS documentation and researched on Google I have found below library for codeigniter to upload files to…
0
votes
1 answer

SharePoint2010 farm SharePoint Security Token Service validation error

On our SharePoint 2010 farm we renewed our SSL certificate, and after renewal we started to get following error in Event Log Event ID 8311 An operation failed because the following certificate has validation errors:\n\nSubject Name: CN=SharePoint…
KayEye
  • 23
  • 5
0
votes
0 answers

What Ws-Federation Endpoint is required for Identity Providers when using Thinktecture Identity Server V2 Federation?

We are using IdentityServer V2 as our Identity Provider using WsFed/SAML2. We now want to federate. I tried adding our WsFederation endpoint as one of the Identity Providers but can't seem to get it to work. When I add the STS itself, it won't work…
AaronK
  • 428
  • 5
  • 18
0
votes
1 answer

VS2012 and VS2013 Missing STS Web Application Template

I am trying to create STS MVC web application in VS2012 and VS2013, but STS web template is not available in template gallery. Is there a way that I can download STS web app template in VS2012 and Vs2013 ? One more query, We have Identity and…
0
votes
1 answer

Signed SOAP header has two BinarySecurityTokens (when in fact it could and should have one)

I'm trying to requests a security token from a STS service. The service is 3rd party, so I can't modify it, check logs, etc. The resulting request SOAP message looks almost identical to a sample request I have. It's only that there are two…
Marcel N.
  • 13,726
  • 5
  • 47
  • 72
0
votes
0 answers

Azure Single Sign-on with Custom STS

I am looking for a way to authenticate users in a suite of apps using my own custom STS. The main app is built on Azure and is currently using ASP.NET identity temporarily, though the others (which are third party helpdesk and billing) supposedly…
0
votes
1 answer

Who have to validate STS security token lifetime

We have a custom active STS based on WIF. It normally issues standard security tokens by client requests. In the STS Service configuration we has been set DefaultTokenLifetime parameter to 1 min. After that we are calling our server with applied…
0
votes
2 answers

Which Property should I use when Sending Additional information in a RequestSecurityToken (RST)

There are a couple of properties that seem to allow this: Properties (which is a Dictionaty) AdditionalContext and Context... I cannot find any guidelines as to which would be most appropriate to use... I basically need the requestor of the token to…
Arnaud
  • 430
  • 1
  • 3
  • 13
0
votes
1 answer

How to bootstrap securitytoken for WCF channel created with a Unity InjectionFactory

I've had quite the challenge in handling the following scenario. I want to use the Unity DI Framework to create a new channel for my service when needed. The service is secured with Federated security. The service is not called from within a…
0
votes
1 answer

Getting WIF to work with OpenSSO as STS

Using OpenSSO as an identity provider, what should I do (i.e. with FedUtil.exe) to configure my .NET relying party so that it will do the STS dance? I've gotten OpenSSO's WS-Trust client samples running, so I think OSSO's in a good state and ready…
Tyler
  • 859
  • 1
  • 8
  • 10
0
votes
1 answer

Why i get this Error : "The issuer of the security token was not recognized by the IssuerNameRegistry"

When i want to run my application using a custom STS (I have written it and it works well), firstly i get this Error : The issuer of the security token was not recognized by the IssuerNameRegistry I tested all the solutions for this error but i…
0
votes
1 answer

WIF STS with multiple applications going out of sync

Assume I have two web applications and single STS service: 1. Administration portal where I can grant privileges to users. 2. Sales portal where users can do things based on those privileges. Now assume I have STS that provides security tokens with…
0
votes
1 answer

IdentityManager (Custom STS)

UPDATE: There was no error in config! The error was that i miss placed the certificate. Now i get this error: ID2057: Cannot construct a X509SigningCredentials instance for a certificate without the private key. Parameternamn: token :) iam trying…
user1973285