1 Reply Latest reply on Sep 25, 2001 10:51 AM by jbaker_softcomms

    Why unable to find LoginModule class?

    jbaker_softcomms

      I have a strange classloader problem [probably] trying to login to jboss from a standalone client. As far as I can see the class org.jboss.srp.jaas.SRPLoginModule is from the jbosssx-client.jar which is definitely in my client program's classpath but I still get the following error..

      javax.security.auth.login.LoginException: unable to find LoginModule class: org.jboss.srp.jaas.SRPLoginModule

      Is their something else that needs to be configured?
      Hopefully this is a simple matter.

      Thanks in advance,
      John

        • 1. Re: Why unable to find LoginModule class?
          jbaker_softcomms

          Well, after closer inspection it seems that the auth.conf file bundled with jboss-2.4.0 that I was using as a base example to work from is incorrectly configured!!.. The srp class name has a word missing.

          Instead of

          org.jboss.srp.jaas.SRPLoginModule

          it should be

          org.jboss.security.srp.jaas.SRPLoginModule

          No wonder it wouoldn't load but it was damn easy not to notice!!

          Good luck,
          John