python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Why authentication ticket expires after 30 minutes using WS-federation?
I have the following code in ConfigureServices method:
var federationSettings = new FederationSettings();
this.Configuration.GetSection(nameof(FederationSettings)).Bind(federationSettings);
...
Jesús López
Votes: 0
Answers: 1
Set up authentication in .net-core using ws-federation
I'm trying to set up authentication against ADFS using ws-federation
services.AddAuthentication(sharedOptions =>
{
sharedOptions.DefaultScheme = CookieAuthenticationDefaults.AuthenticationSchem...

FatAlbert
Votes: 0
Answers: 1
how to create token in dotnet 5.0 Using WS-Federation without ASP.NET Core Identity
I had to use WS-Federation without ASP.NET Core Identity in my dot net 5.0 project. I have set up my startup file referring below official document from Microsoft. I am not sure how we should create t...
Nil
Votes: 0
Answers: 1
Using WS-Federation in .NET 5.0
Anyone please suggest an alternative to SessionSecurityToken in .NET 5.0.
Namespace - System.IdentityModel.Tokens
Earlier .NET framework with support for above assembly - 4.8
Nil
Votes: 0
Answers: 0