Changes between Version 13 and Version 14 of ServiceProviderFederation/Discovery


Ignore:
Timestamp:
11/14/19 14:50:16 (4 years ago)
Author:
Dieter Van Uytvanck
Comment:

updated Shib SP section with link to website where the instructions are available

Legend:

Unmodified
Added
Removed
Modified
  • ServiceProviderFederation/Discovery

    v13 v14  
    1616=== For Shibboleth Service Provider
    1717
    18 In order to use the central Discovery Service, your Shibboleth Service Provider's configuration must have the right session initiator configuration. You can change this in the `shibboleth2.xml` configuration file. The `Location` attribute specifies the login endpoint you can use to append to your handler URLs (`/Shibboleth.sso` by default) to start a SAML session. The `URL` attribute of the session initiator of type `SAMLDS` should point to the !DiscoJuice installation you want to use.
    19 
    20 Please add to `shibboleth2.xml`:
    21 
    22 {{{
    23   <!-- Use CLARIN central Discovery Service -->
    24   <SSO discoveryProtocol="SAMLDS" discoveryURL="https://discovery.clarin.eu/discojuice">
    25     SAML2
    26   </SSO>
    27 }}}
    28 '''(A restart of `shibd` and a reload of your web server and is required afterwards.)'''
    29 
    30 If you're using Shibboleth SP < version 2.4.x you must use the following, more verbose, snippet:
    31 {{{
    32 <SessionInitiator type="Chaining" Location="/DiscoJuice" id="DiscoJuice" relayState="cookie">
    33      <SessionInitiator type="SAML2" defaultACSIndex="1" acsByIndex="false" template="bindingTemplate.html"/>
    34      <SessionInitiator type="Shib1" defaultACSIndex="5"/>
    35      <SessionInitiator type="SAMLDS" URL="https://discovery.clarin.eu/discojuice"/>
    36  </SessionInitiator>
    37 }}}
     18Please see https://www.clarin.eu/content/clarin-discovery-service#howto for detailed instructions
    3819
    3920=== For other Service Provider implementations (technical details)