PHP Classes

File: web/SSO/modules/discopower/www/disco.php

Recommend this page to a friend!
  Classes of william amed   Raptor 2   web/SSO/modules/discopower/www/disco.php   Download  
File: web/SSO/modules/discopower/www/disco.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: 484 bytes
 

Contents

Class file image Download
<?php

try {
   
$discoHandler = new sspmod_discopower_PowerIdPDisco(array('saml20-idp-remote', 'shib13-idp-remote'), 'poweridpdisco');
} 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);
}

?>