00001 <?php
00002
00003
00004
00005
00006
00007
00008 include_once('CAS.php');
00009
00010 phpCAS::setDebug();
00011
00012
00013 phpCAS::client(CAS_VERSION_2_0,'sso-cas.univ-rennes1.fr',443,'');
00014
00015
00016 phpCAS::setNoCasServerValidation();
00017
00018
00019 phpCAS::forceAuthentication();
00020
00021
00022
00023
00024
00025 if (isset($_REQUEST['logout'])) {
00026 phpCAS::logout();
00027 }
00028
00029
00030 ?>
00031 <html>
00032 <head>
00033 <title>phpCAS simple client</title>
00034 </head>
00035 <body>
00036 <h1>Successfull Authentication!</h1>
00037 <p>the user's login is <b><?php echo phpCAS::getUser(); ?></b>.</p>
00038 <p>phpCAS version is <b><?php echo phpCAS::getVersion(); ?></b>.</p>
00039 <p><a href="?logout=">Logout</a></p>
00040 </body>
00041 </html>