Skip to content
Snippets Groups Projects
Commit d0a6c7e0 authored by Olav Morken's avatar Olav Morken
Browse files

SAML2_SOAPClient: Don't throw exception when https key isn't included in metadata.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2766 44740490-163a-0410-bde0-09ae8108e29a
parent af1165aa
No related branches found
No related tags found
No related merge requests found
......@@ -189,7 +189,8 @@ class SAML2_SOAPClient {
}
if ($keyInfo['key'] !== $data) {
throw new Exception('Key on SSL connection did not match key we validated against.');
SimpleSAML_Logger::debug('Key on SSL connection did not match key we validated against.');
return FALSE;
}
SimpleSAML_Logger::debug('Message validated based on SSL certificate.');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment