0

I need to support SSO using SAML 2.0 for my portal(SP-initiated SSO and SP-initiated SLO profiles). I have Shibboleth Server as IdP and now I need to create or use existing SP using C#.

Is it possible to implement SP for integration with Shibboleth using WIF, or I need to find other solutions?

Also any other info about integration with Shibboleth using C# will helpful.

halfer
  • 19,824
  • 17
  • 99
  • 186
Frank59
  • 3,141
  • 4
  • 31
  • 53

1 Answers1

1

WIF = WS Federation

Shibboleth = SAML

They don't interact so you can't use WIF out the box.

Refer: SAML : SAML connectivity / toolkit and the links in that article.

Or you can do it via:

RP --> WIF --> ADFS --> SAML --> Shibboleth

Refer: AD FS 2.0 Step-by-Step Guide: Federation with Shibboleth 2 and the InCommon Federation

rbrayb
  • 46,440
  • 34
  • 114
  • 174
  • WIF is the Windows Identify Framework, which is in no way exclusive to WS Federation. WIF has baked-in support for WS Federation, but it also has baked-in support for SAML 2.0. – TheMonarch Sep 15 '15 at 17:27
  • Actually, WIF stands for Windows Identity Foundation. Yes it supports WS-Fed only. It has SAML tokens but does NOT support the SAML protocol. – rbrayb Sep 15 '15 at 18:45