This content has been marked as final.
Show 3 replies
-
1. Re: WildFly 15, get password ejb-remote: "Remote EJB Client Example"
Oleg Burakov Feb 11, 2019 2:22 AM (in response to Oleg Burakov)In JBoss 6 AS we used the configuration shown below.
In WildFly 15 there is a mechanism that implements a configuration similar to JBoss 6 AS?
Sorry my english.
For earlier thanks for the answer.
Configuration Jboss AS 6:
<application-policy name = "IGRoles"> <authentication> <login-module code="org.jboss.security.auth.spi.UsersRolesLoginModule" flag = "required"> <module-option name="usersProperties">IG_users.properties</module-option> <module-option name="rolesProperties">IG_roles.properties</module-option> </login-module> </authentication> </application-policy>
<application-policy name = "IG_CallerDS"> <authentication> <login-module code = "org.jboss.resource.security.CallerIdentityLoginModule" flag = "required"> <module-option name = "managedConnectionFactoryName">jboss.jca:service=LocalTxCM,name=OraDSIG</module-option> </login-module> </authentication> </application-policy>
<datasources> <local-tx-datasource> <jndi-name>OraDSIG</jndi-name> <connection-url>jdbc:oracle:thin:@localhost:1521:olg1</connection-url> <driver-class>oracle.jdbc.driver.OracleDriver</driver-class> <security-domain>IG_CallerDS</security-domain> <exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter</exception-sorter-class-name> </local-tx-datasource> </datasources>
-
2. Re: WildFly 15, get password ejb-remote: "Remote EJB Client Example"
Wolfgang Mayer Feb 14, 2019 4:27 AM (in response to Oleg Burakov)This should still be possible in WildFly either via Security Domain (PicketBox security) or Authentication Context (Elytron)
-
3. Re: WildFly 15, get password ejb-remote: "Remote EJB Client Example"
Oleg Burakov Feb 14, 2019 3:06 PM (in response to Wolfgang Mayer)Wolfgang perhaps you have an example for the Authentication Context (Elytron)?