Revision: 2266
Author: olavmrk
Date: Thu Apr 22 22:45:38 2010
Log: docs: Update example in IdP configuration to match the new SP layout.
http://code.google.com/p/simplesamlphp/source/detail?r=2266

Modified:
 /trunk/docs/simplesamlphp-idp.txt

=======================================
--- /trunk/docs/simplesamlphp-idp.txt   Tue Apr  6 00:21:07 2010
+++ /trunk/docs/simplesamlphp-idp.txt   Thu Apr 22 22:45:38 2010
@@ -144,14 +144,17 @@
 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).

--
You received this message because you are subscribed to the Google Groups 
"simpleSAMLphp commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/simplesamlphp-commits?hl=en.

Reply via email to