00001 <?php
00002
00003
00004
00005
00006
00007
00008 include_once('CAS.php');
00009
00010
00011 phpCAS::setDebug();
00012
00013
00014 phpCAS::proxy(CAS_VERSION_2_0,'sso-cas.univ-rennes1.fr',443,'');
00015
00016
00017 phpCAS::setNoCasServerValidation();
00018
00019
00020 phpCAS::forceAuthentication();
00021
00022
00023
00024
00025
00026
00027
00028 $service = 'http://phpcas-test.ifsic.univ-rennes1.fr/examples/example_service.php';
00029
00030 ?>
00031 <html>
00032 <head>
00033 <title>phpCAS proxied proxy example</title>
00034 </head>
00035 <body>
00036 <h1>phpCAS proxied proxy example</h1>
00037 <p>the user's login is <b><?php echo phpCAS::getUser(); ?></b>.</p>
00038 <h2>Response from service <?php echo $service; ?></h2><ul><hr>
00039 <?php
00040 flush();
00041 // call a service and change the color depending on the result
00042 if ( phpCAS::serviceWeb($service,$err_code,$output) ) {
00043 echo '<font color="#00FF00">';
00044 } else {
00045 echo '<font color="#FF0000">';
00046 }
00047 echo $output;
00048 echo '</font><hr></ul>';
00049 ?>
00050 </body>
00051 </html>
00052