Dynamically adding a new participating base entry to a realm

Use this procedure to add a new participating base entry to a realm.

About this task

Note: When this dynamic call is made, only the configuration in memory is updated. The configuration file is not updated.
Event Type
DYNA_CONFIG_EVENT_ADD_PARTICIPATING_BASE_ENTRY
Configuration Data
DYNA_CONFIG_KEY_BASE_ENTRY (required) - [String]
Specifies the base entry to be added.
DYNA_CONFIG_KEY_REALM_NAME (required) - [String]
Specifies the name of the realm.
The following is a sample task:

Procedure

  1. Ensure that virtual member manager is running.
  2. Add the base entry in to the realm as a participantingBaseEntry For example:
    Hashtable configData = new Hashtable();
    String realmName = "YourCo";
    configData.put(Service.DYNA_CONFIG_KEY_REALM_NAME,realmName);
    configData.put(Service.DYNA_CONFIG_KEY_BASE_ENTRY,"cn=realmusers,dc=yourco,dc=com");
    service.dynamicUpdateConfig(Service.DYNA_CONFIG_EVENT_ADD_PARTICIPATING_BASE_ENTRY, configData);


Terms of use | Feedback