Use IdentityServer 4 and WS-Federation

I understand that .Net Core does not support WS-Federation. However, I would really like to use IdentityServer 4, which, as I understand it, also does not support WS-Federation.

However, if I have an ASP.Net Core website and am aiming for a complete .Net infrastructure, is it possible to use WS-Federation with IdentityServer 4 then? Is there any kind of interface that can be used?

As if I were using code from IdentityServer3.WsFederation , how difficult would it be to use it to use IdentityServer4?

+5
source share
2 answers

Now you can use WsFederation with IdentityServer4, even if it runs on AspNetCore using IdentityServer4.WsFederation .

Here is a sample that adds a new /wsfederation EndPoint to your IdentityServer4. This EndPoint will allow you to access the same features as IdentityServer3.WsFederation .

+1
source

Some features, such as encrypted XML, have not yet been ported to the .Net core. what is needed for WsFederation to work. Ws-Federation Authentication Using ASP.NET Kernel

0
source

All Articles