From 45a302140bd581eeff4c27021ca2b5e1f437c25d Mon Sep 17 00:00:00 2001 From: Olav Morken <olav.morken@uninett.no> Date: Thu, 27 Aug 2009 10:20:03 +0000 Subject: [PATCH] Fix example entity id to be a proper URI. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1716 44740490-163a-0410-bde0-09ae8108e29a --- docs/simplesamlphp-idp.txt | 2 +- metadata-templates/saml20-sp-remote.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/simplesamlphp-idp.txt b/docs/simplesamlphp-idp.txt index ecd70524d..203a96638 100644 --- a/docs/simplesamlphp-idp.txt +++ b/docs/simplesamlphp-idp.txt @@ -150,7 +150,7 @@ The identity provider you are configuring needs to know about the service provid <?php $metadata = array( - 'sp.example.org' => array( + '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', ), diff --git a/metadata-templates/saml20-sp-remote.php b/metadata-templates/saml20-sp-remote.php index 6a07924f6..3660298ed 100644 --- a/metadata-templates/saml20-sp-remote.php +++ b/metadata-templates/saml20-sp-remote.php @@ -36,7 +36,7 @@ $metadata = array( /* * Example simpleSAMLphp SAML 2.0 SP */ - 'saml2sp.example.org' => array( + 'https://saml2sp.example.org' => array( 'AssertionConsumerService' => 'https://saml2sp.example.org/simplesaml/saml2/sp/AssertionConsumerService.php', 'SingleLogoutService' => 'https://saml2sp.example.org/simplesaml/saml2/sp/SingleLogoutService.php' ), -- GitLab