| 1 | == [[https://iam.alaska.edu/shib|Shibboleth]] / Setup SP Relying Party == |
| 2 | |
| 3 | This page documents how to setup an SP's relying party configuration in the IdP. |
| 4 | |
| 5 | 1. Check out the relying-party.xml config file from the shib-svn repository. |
| 6 | |
| 7 | 2. Add the SP's metadata to the shib-svn repository. |
| 8 | |
| 9 | 3. Add a stanza in the relying-party.xml config file to import the SP's metadata. |
| 10 | {{{ |
| 11 | [sxjpm@heald conf]$ vi relying-party.xml |
| 12 | ... |
| 13 | <!-- iam.alaska.edu metadata --> |
| 14 | <MetadataProvider id="iam.alaska.edu" xsi:type="ResourceBackedMetadataProvider" |
| 15 | xmlns="urn:mace:shibboleth:2.0:metadata"> |
| 16 | <MetadataResource xsi:type="resource:FilesystemResource" |
| 17 | file="/opt/shibboleth-idp/metadata/iam-metadata.xml" /> |
| 18 | </MetadataProvider> |
| 19 | :wq! |
| 20 | }}} |