Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

checkout my code ..working like a charm..

   <bean
                class="org.jasig.cas.authentication.principal.HttpBasedServiceCredentialsToPrincipalResolver" />
        </list>
    </property>

    <!--
        | Whereas CredentialsToPrincipalResolvers identify who it is some Credentials might authenticate, 
        | AuthenticationHandlers actually authenticate credentials.  Here we declare the AuthenticationHandlers that
        | authenticate the Principals that the CredentialsToPrincipalResolvers identified.  CAS will try these handlers in turn
        | until it finds one that both supports the Credentials presented and succeeds in authenticating.
        +-->
        <property name="authenticationHandlers">
        <list>

               <bean class="org.jasig.cas.authentication.handler.support.HttpBasedServiceCredentialsAuthenticationHandler" p:httpClient-ref="httpClient"></bean>

user_master user_name user_password

          </list>
        </property>
</bean>


  <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
    <property name="driverClassName">
            <value>net.sourceforge.jtds.jdbc.Driver</value>
    </property>

    <property name="url">
            <value>jdbc:jtds:sqlserver://localhost:port/db</value>
    </property>

    <property name="username">
            <value>1234</value>
    </property>

    <property name="password">
        <value>password</value>
    </property>
</bean>
share|improve this answer
1  
If not effecting remove the corresponding jar and make another one . – Baadshah Dec 26 '12 at 6:46
the password is encryped. How can you decrypt passwords? and where is the description of the user table? How does it work? – Dongkyun Dec 27 '12 at 0:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.