> OK. Here we go... Something indeed seems to be wrong with mod_auth_cas. With > every http request for SAML validation I get one or more segfaults in the > apache default error.log.
Two observations about the logs you shared: 1. You're getting a successful SAML ticket validation response. 2. Looks like you're getting redirected to CAS for resources (JS, CSS, favicon) other than your application entry point HTML page. There's nothing strictly wrong with #2 per se, but it makes reading the logs much harder and it's relatively less efficient. It would be interesting to have some logging to indicate successful parsing of attributes, but I don't see an AttributeResponse in the SAML message, which indicates you haven't configured CAS for attribute release or you haven't allowed attributes to be released in the service manager. I have a patched version you can use that provides additional attribute logging, https://github.com/serac/mod_auth_cas/tree/attr-logging, which you may find helpful. In my experience most problems are in parsing the XML; it would be reassuring to know you're getting past that part. M -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
