I am trying to use CAS for SSO and JAAS on CAS Server. The user information is on database table. I created my own LoginModule for JAAS and I configured my LoginModule in jaas.conf.
The below is the jaas.conf file.
and I added the below line in deployerConfigContext.xml:
CAS {
com.usol.cas.sample.CasLoginModule required debug=true
driver="com.mysql.jdbc.Driver"
url="jdbc:mysql://linux.ssoserver/ssotest"
user="cas"
password="cas";
};
I found JaasAuthenticationHandler does not use my CasLoginModule.
<bean class="org.jasig.cas.authentication.handler.support.JaasAuthenticationHandler" />
I wrote System.out.println line in my java source but there was no output and I changed my class name in jaas.conf file incorrectly to make ClassNotFoundError but no error happened.
What is the reason do you think?
I could not resolve my issue.
Thank you in advance.

