0 Replies Latest reply on Mar 17, 2015 10:25 AM by ikaychef

    Missing dependencies plug-in-loader

    ikaychef

      Hello,

       

      i am trying to add a custom security realm and a plugin which i build with the example from https://docs.jboss.org/author/display/WFLY8/Security+Realms

      It is working in standalone mode but not in domain mode, where i get the following error:

      JBAS014775:    New missing/unsatisfied dependencies:

            service jboss.server.controller.management.security_realm.PlugInRealm.plug-in-loader (missing) dependents: [service jboss.server.controller.management.security_realm.PlugInRealm.plug-in-authentication]

       

      I added the security realm to the host.xml of my nodes like the following:

      <security-realm name="PlugInRealm">
      <plug-ins>
         <plug-in module="org.jboss.as.sample.plugin"/>
          </plug-ins>
          <authentication>
         <plug-in name="Sample">
        <properties>
        <property name="darranl.password" value="dpd"/>
        <property name="darranl.roles" value="Admin,Banker,User"/>
        </properties>
         </plug-in>
          </authentication>
          <authorization>
         <plug-in name="Delegate" />
          </authorization>
        </security-realm>
      </security-realms>
      
      

       

      The plugin is in JBOSS_HOME/modules/base/layers/org/jboss/as/samlple/plugin

       

      Am i missing something specific for domain configuration ?