2 Replies Latest reply on Dec 17, 2015 3:37 AM by arkadyz

    Disable default authentication mechanism of Wildfly

    arkadyz

      Hello,

       

      I am working with Wildfly 8.2.0

      It has built-in authentication mechanism which forces definition of application user and all remote clients will do jndi/jms invocations with this user.

       

      Is there a way to disable this authentication mechanism (and allow for remote clients to do jndi/jms invocation without authentification, like in JBoss 5) ?

       

      I tried to change RealmDirect login-module to be "optional" (instead of "required"):

                      <security-domain name="other" cache-type="default">

                          <authentication>

                              <login-module code="RealmDirect" flag="optional">

                                  <module-option name="password-stacking" value="useFirstPass"/>

                              </login-module>

                             ...

       

      But it didn't help.

      Any suggestions ?

       

      Thank you in advance.