You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

Discovery Service Configuration

The eduTEAMS Discovery Service URL serves to discovery requests of the SPs.

eduTEAMS Discovery Service URL
https://discovery.eduteams.org/wayf.php

The protocol is described in Identity Provider Discovery Service Protocol and Profile.


Shibboleth SP

Discovery Service configuration is part of session initiator configuration. Shibboleth SP documentation on the subject is what you should rely on for more thorough information. The examples presented here might not directly apply to your existing configuration.

Set discovery for login handler

This example instructs Shibboleth SP default login handler to use eduTEAMS discovery as a discovery service.

file:/etc/shibboleth/shibboleth2.xml
<SSO
    discoveryProtocol="SAMLDS" 
    discoveryURL="https://discovery.eduteams.org/wayf.php">
    SAML2 
</SSO>

Embedded discovery

You may use the discovery in embedded fashion. In that case the page that triggers the authentication needs to include javascript in head element,

Including javascript
<head>
    <!-- HTML elements -->
    <script type="text/javascript" src="https://discovery.eduteams.org/ds.js"></script>
    <!-- HTML elements -->
</head>

and then display a element triggering the authentication.

Login element
<a href="/Shibboleth.sso/Login" onclick="startOverlay(event)">Log in</a>


 

  • No labels