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.hrz.tu-darmstadt.de',443,'');
00014
00015 phpCAS::setServerProxyValidateURL('https://sso.hrz.tu-darmstadt.de:1443/proxyValidate');
00016
00017
00018
00019
00020
00021
00022
00023 phpCAS::setNoCasServerValidation();
00024
00025
00026 phpCAS::forceAuthentication();
00027
00028
00029
00030
00031
00032 if (isset($_REQUEST['logout'])) {
00033 phpCAS::logout();
00034 }
00035
00036
00037 ?>
00038 <html>
00039 <head>
00040 <title>phpCAS simple client</title>
00041 </head>
00042 <body>
00043 <h1>Successfull Authentication!</h1>
00044 <p>the user's login is <b><?php echo phpCAS::getUser(); ?></b>.</p>
00045 <p>phpCAS version is <b><?php echo phpCAS::getVersion(); ?></b>.</p>
00046 <p><a href="?logout=">Logout</a></p>
00047 </body>
00048 </html>