summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlav Morken <olav.morken@uninett.no>2010-04-23 05:46:56 +0000
committerOlav Morken <olav.morken@uninett.no>2010-04-23 05:46:56 +0000
commit13ac67902290e8933df09039a2f095831aef0642 (patch)
tree71624db2d556c282ad120312befa91f48694fc5c
parent8dd8b8643d73c9ebd68382ad3134186135e4a0b4 (diff)
downloadsimplesamlphp-origin/simplesamlphp-1.5.zip
simplesamlphp-origin/simplesamlphp-1.5.tar.gz
simplesamlphp-origin/simplesamlphp-1.5.tar.bz2
docs: Update example in IdP configuration to match the new SP layout.origin/simplesamlphp-1.5
Merged into 1.5 branch from r2266. git-svn-id: https://simplesamlphp.googlecode.com/svn/branches/simplesamlphp-1.5@2267 44740490-163a-0410-bde0-09ae8108e29a
-rw-r--r--docs/simplesamlphp-idp.txt11
1 files changed, 7 insertions, 4 deletions
diff --git a/docs/simplesamlphp-idp.txt b/docs/simplesamlphp-idp.txt
index f465ee5..1421343 100644
--- a/docs/simplesamlphp-idp.txt
+++ b/docs/simplesamlphp-idp.txt
@@ -144,14 +144,17 @@ files, see the [IdP hosted reference](simplesamlphp-reference-idp-hosted).
Adding SPs to the IdP
---------------------
-The identity provider you are configuring needs to know about the service providers you are going to connect to it. This is configured by metadata stored in `metadata/saml20-sp-remote.php` and `metadata/shib13-sp-remote.php`. This is a minimal example of a `metadata/saml20-sp-remote.php` metadata file:
+The identity provider you are configuring needs to know about the service providers you are going to connect to it.
+This is configured by metadata stored in `metadata/saml20-sp-remote.php` and `metadata/shib13-sp-remote.php`.
+This is a minimal example of a `metadata/saml20-sp-remote.php` metadata file for a simpleSAMLphp SP:
<?php
- $metadata['https://sp.example.org'] = array(
- 'AssertionConsumerService' => 'https://sp.example.org/simplesaml/saml2/sp/AssertionConsumerService.php',
- 'SingleLogoutService' => 'https://sp.example.org/simplesaml/saml2/sp/SingleLogoutService.php',
+ $metadata['https://sp.example.org/simplesaml/module.php/saml/sp/metadata.php/default-sp'] = array(
+ 'AssertionConsumerService' => 'https://sp.example.org/simplesaml/module.php/saml/sp/saml2-acs.php/default-sp',
+ 'SingleLogoutService' => 'https://sp.example.org/simplesaml/module.php/saml/sp/saml2-logout.php/default-sp',
);
+Note that the URI in the entityID and the URLs to the AssertionConsumerService and SingleLogoutService endpoints change between different service providers.
If you have the metadata of the remote SP as an XML file, you can use the built-in XML to simpleSAMLphp metadata converter, which by default is available as `/admin/metadata-converter.php` in your simpleSAMLphp installation.
For more information about available options in the sp-remote metadata files, see the [SP remote reference](simplesamlphp-reference-sp-remote).