JBoss Community

Custom jdbc login module for remoting

created by Daniel Jipa in JBoss AS 7 Development - View the full discussion

Hello,

 

I am trying to migrate an OC4J_10g application to the new Jboss 7. I've successfully deployed the ear but I have troubles using the login module.

I've chanded the configuration line for remoting realms in standalone.xml:

 

<connector name="remoting-connector" socket-binding="remoting" security-realm="ApplicationRealm" />

 

to use my custom security realm:

 

<connector name="remoting-connector" socket-binding="remoting" security-realm="CaponeRealm" />

 

Also in the security-domains I've defined my custom login module:

 

<security-domain name="asf-jaas" cache-type="default">
  <authentication>
          <login-module code="com.asf.security.server.jaas.LdapFallbackJdbcLoginModule" flag="required">
               <module-option name="debug" value="true"/>
          </login-module>
     </authentication>
</security-domain>

 

I've also add the jboss.xml file in META-INF folder linking the ear to the security-domain:

 

<jboss>
     <security-domain>asf-jaas</security-domain>
</jboss>

 

 

My problem is linking the CaponeRealm to the security-domain. How can I do that ?

As I saw in docs https://docs.jboss.org/author/display/AS7/Securing+the+Management+Interfaces , realms have only 5 mechanisms(ldap,users,properties,ssl,secret) and none of them can be help me making that link.

Any help will be appreciated!

Thank you!

 

Daniel Jipa

Reply to this message by going to Community

Start a new discussion in JBoss AS 7 Development at Community