Hi we are building an application in ASP.Net using .net framework 4.0, IIS 7. we are trying to use SAML(2.0) authentication. We have an identity provider whose login credentials will be used by our application. The Service provider being used is SHIBBOLETH (2x). If any one has used shibboleth could you please let me know the installation and how to test whether its working. I currently did every step present here https://shibboleth.usc.edu/docs/sp/install/#configure The shibboleth service is running all the configurations is done. But im not understanding the Testing shibboleth phase. How would I have this login page, where would I login using the credentials. Please give some detailed advice as I new to this
2 Answers
For .NET, you can either use the WIF Extension for SAML 2.0 Protocol or go standard WIF -> ADFS -> SAML -> Shibboleth.

- 46,440
- 34
- 114
- 174
You would need to install Shibboleth SP3 executable Download link, Make sure you checked the configure IIS7 module and let the other as default options. This process will install Shibboleth SP3 in C:\opt\shibboleth-sp\ directory.
visit http://localhost/Shibboleth.sso/Status to see the status (on your server, don't use IP or domain it will throw 403).
Then Configure shibboleth2.xml as per your need. Visit http://localhost/Shibboleth.sso/Login and it will redirect you to IDP login page.
I have attached the blog post below which has complete details with screenshots.
Here is a complete article about Shibboleth Service Provider for IIS

- 1
- 1