Deploy Windows Identity Foundation in PHP

Do I need any advice on whether the Windows Identity Foundation can work with the PHP platform or not? I know that WIF is for the .NET framework, and one of its functions is the Single-Sign On function. What do I need to do to enable WIF features in PHP client domain sites?

+4
source share
1 answer

Windows Identity Foundation (WIF) provides single sign-on capabilities using the SAML protocol, which is an open standard. Therefore, to implement the WIF functionality in PHP, you just need to use one of the SAML PHP libraries.

There are several options, but SimpleSAML is probably the most reliable, and I was able to get it to work for a PHP application that accepted claims from AD FS STS. We also used the same library in Drupal (with minor changes) to enable single sign-on.

Hope this helps.

+4
source

All Articles