1 Reply Latest reply on Aug 28, 2006 5:42 AM by markash

    JAAS to JBoss

    seahsherley

      Hi there,

      I am currently using eclipse-jaas trying to connect to Jboss's ldapLoginModule.... Mine is a application client (not web client).. can anyone kindly describe to me how everything work?

      What I have are as follows:

      CustomLoginModule on client side.
      Added application-policy to the login-config at the server side.

      I dont know how the client knows where the server is... can anyone please advice me on it?

      Thanks a million!!

        • 1. Re: JAAS to JBoss
          markash

          Good Day,

          You need to use the ClientLoginModule from JBoss on the client side to associate the UserName and Password with calls that will be made to the JBoss Application Server.

          Example:

          client {
           org.jboss.security.ClientLoginModule required;
           //CustomLoginModule here
          };
          


          Regards,
          Mark P Ashworth