PHP Classes

File: web/SSO/SAML/shib13/sp/idpdisco.php

Recommend this page to a friend!
  Classes of william amed   Raptor 2   web/SSO/SAML/shib13/sp/idpdisco.php   Download  
File: web/SSO/SAML/shib13/sp/idpdisco.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Raptor 2
Framework that takes routes from annotations
Author: By
Last change:
Date: 8 years ago
Size: 713 bytes
 

Contents

Class file image Download
<?php

/**
 * WARNING:
 *
 * THIS FILE IS DEPRECATED AND WILL BE REMOVED IN FUTURE VERSIONS
 *
 * @deprecated
 */

require_once('../../_include.php');

SimpleSAML_Logger::warning('The file shib13/sp/idpdisco.php is deprecated and will be removed in future versions.');

try {
   
$discoHandler = new SimpleSAML_XHTML_IdPDisco(array('shib13-idp-remote'), 'shib13');
} catch (
Exception $exception) {
   
/* An error here should be caused by invalid query parameters. */
   
throw new SimpleSAML_Error_Error('DISCOPARAMS', $exception);
}

try {
   
$discoHandler->handleRequest();
} catch(
Exception $exception) {
   
/* An error here should be caused by metadata. */
   
throw new SimpleSAML_Error_Error('METADATA', $exception);
}

?>