1 Reply Latest reply on Dec 22, 2011 12:27 PM by rkite01

    ClientLoginModule local configuration

    rkite01

        How do we configure the ClientLoginModule in JBoss 7.1 ?   I have the CallerIdentityLoginModule deploying but am not sure how to get the client login working.   I am specifically using org.jboss.security.ClientLoginModule and tried to configure in standalone.xml but it does not seem to work.  Some of the posts I have read are leading me to believe I need to configure it in jboss-web.xml.  Does anyone know of an example?    

       

        I understand that remote EJB calls do not yet implement passing username password from remote hosts. 

       

       

      Thanks

      Rodney

        • 1. Re: ClientLoginModule local configuration
          rkite01

            FYI:  Have it working. 

          Just make an entry in <security-domains> in standalone.xml

           

           

                      <security-domain name="your-client-login-name" cache-type="default">
                            <authentication>
                                  <login-module code="org.jboss.security.ClientLoginModule" flag="required"/>
                            </authentication>
                      </security-domain>