-
Bug
-
Resolution: Done
-
Critical
-
None
-
None
Expose generic options like in case of legacy ldap outbound connection. Users relying on them can't migrate to elytron.
As tfonteyn has already pointed out customers use generic options exposed by legacy ldap outbound connection.
Here are references to possible properties to be configured
- General properties
- Service-specific
- e.g. java.naming.ldap.* , for example for connection pool configuration
- Feature-specific
- Provider-specific
- e.g. com.sun.jndi.ldap.trace.ber
AFAICT it is already prepared in elytron, just elytron-subsystem part is missing.
SimpleDirContextFactoryBuilder.java
// set any additional connection property if (connectionProperties != null) { for (Object key : connectionProperties.keySet()) { Object value = connectionProperties.get(key.toString()); if (value != null) { env.put(key.toString(), value.toString()); } } }
- clones
-
JBEAP-7610 Expose generic options for elytron dir-context
- Closed
- relates to
-
WFCORE-2518 Unable to configure Krb5LoginModule options in elytron kerberos implementation
- Resolved