From f099e70f054bbb26c6b942d44d5f3f276d7e924c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jaime=20P=C3=A9rez=20Crespo?= <jaime.perez@uninett.no>
Date: Thu, 22 Aug 2013 10:09:15 +0000
Subject: [PATCH] HTTP-POST SLO support for the old, deprecated SP interface.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3263 44740490-163a-0410-bde0-09ae8108e29a
---
 lib/SimpleSAML/Metadata/MetaDataStorageHandler.php | 3 +++
 www/saml2/sp/initSLO.php                           | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/lib/SimpleSAML/Metadata/MetaDataStorageHandler.php b/lib/SimpleSAML/Metadata/MetaDataStorageHandler.php
index 4d07d3c88..fc1be843f 100644
--- a/lib/SimpleSAML/Metadata/MetaDataStorageHandler.php
+++ b/lib/SimpleSAML/Metadata/MetaDataStorageHandler.php
@@ -100,6 +100,9 @@ class SimpleSAML_Metadata_MetaDataStorageHandler {
 
 				case 'SingleLogoutService' : 
 					return $baseurl . 'saml2/sp/SingleLogoutService.php';					
+
+				case 'SingleLogoutServiceBinding' :
+					return SAML2_Const::BINDING_HTTP_REDIRECT;
 			}
 		} elseif($set == 'saml20-idp-hosted') {
 
diff --git a/www/saml2/sp/initSLO.php b/www/saml2/sp/initSLO.php
index 84855d00e..d9aa0069c 100644
--- a/www/saml2/sp/initSLO.php
+++ b/www/saml2/sp/initSLO.php
@@ -34,7 +34,6 @@ try {
 		SimpleSAML_Logger::info('SAML2.0 - SP.initSLO: No supported SingleLogoutService endpoint in IdP.');
 		SimpleSAML_Utilities::redirect($returnTo);
 	}
-	$lr->setDestination($SLOendpoint['Location']);
 
 	$spEntityId = isset($_GET['spentityid']) ? $_GET['spentityid'] : $metadata->getMetaDataCurrentEntityID();
 	$spMetadata = $metadata->getMetaDataConfig($spEntityId, 'saml20-sp-hosted');
@@ -44,6 +43,7 @@ try {
 	$lr = sspmod_saml_Message::buildLogoutRequest($spMetadata, $idpMetadata);
 	$lr->setNameId($nameId);
 	$lr->setSessionIndex($session->getAuthData('saml2', 'saml:sp:SessionIndex'));
+	$lr->setDestination($SLOendpoint['Location']);
 
 	$session->doLogout('saml2');
 
-- 
GitLab