From 8ef6b855314bd7f47522c2a3ce89a0ee712cb5c9 Mon Sep 17 00:00:00 2001
From: Olav Morken <olav.morken@uninett.no>
Date: Mon, 23 Jun 2008 10:57:20 +0000
Subject: [PATCH] SAML2-AssertionConsumerService: Fix handling of IsPassive
 responses.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@694 44740490-163a-0410-bde0-09ae8108e29a
---
 www/saml2/sp/AssertionConsumerService.php | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/www/saml2/sp/AssertionConsumerService.php b/www/saml2/sp/AssertionConsumerService.php
index 67ece922f..d76f815bf 100644
--- a/www/saml2/sp/AssertionConsumerService.php
+++ b/www/saml2/sp/AssertionConsumerService.php
@@ -38,9 +38,11 @@ try {
 	$authnResponse->process();
 
 	SimpleSAML_Logger::info('SAML2.0 - SP.AssertionConsumerService: Successfully created local session from Authentication Response');
+
+	/* The response should include the entity id of the IdP. */
+	$idpentityid = $authnResponse->findIssuer();
 	
-	
-	$idpmetadata = $metadata->getMetaData($session->getIdP(), 'saml20-idp-remote');
+	$idpmetadata = $metadata->getMetaData($idpentityid, 'saml20-idp-remote');
 	$spmetadata = $metadata->getMetaDataCurrent();
 	
 	
@@ -64,7 +66,7 @@ try {
 			SimpleSAML_Logger::warning('Could not get realm attribute to log [' . $realmattr. ']');
 		}
 	} 
-	SimpleSAML_Logger::stats('saml20-sp-SSO ' . $metadata->getMetaDataCurrentEntityID() . ' ' . $session->getIdP() . ' ' . $realmstr);
+	SimpleSAML_Logger::stats('saml20-sp-SSO ' . $metadata->getMetaDataCurrentEntityID() . ' ' . $idpentityid . ' ' . $realmstr);
 	
 	
 	$afilter->processFilter($idpmetadata, $spmetadata);
@@ -73,7 +75,7 @@ try {
 	SimpleSAML_Logger::info('SAML2.0 - SP.AssertionConsumerService: Completed attribute handling');
 	
 	
-
+	$session->setIdP($idpentityid);
 		
 		
 
-- 
GitLab