Hi, I am learning how to use phpCAS with SAML 1.1 protocol, when I try to get attributes of user (casuser/Mellon on jasigcas.herokuapp.com) using SAML 1.1, I got an error saying 'CAS Authentication failed!', and the log said: 'SA not validated', and the response body seems is empty.
$cas_host = 'jasigcas.herokuapp.com'; $cas_port = 443; $cas_context = ''; // Load the CAS lib require_once 'phpCAS/CAS.php'; phpCAS::setDebug(); phpCAS::setVerbose(true); // Initialize phpCAS phpCAS::client(SAML_VERSION_1_1, $cas_host, $cas_port, $cas_context); phpCAS::setNoCasServerValidation(); is there something wrong with my configuration or jasigcas.herokuapp.com doesn't support SAML 1.1 at all? -- You received this message because you are subscribed to the Google Groups "CAS Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. Visit this group at http://groups.google.com/a/apereo.org/group/cas-user/.
