mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
16.34.2006 48d21826329bad5bdd7f29e88430154b6474d39d
Update the JMX connection handler to eliminate an incorrect and misleading
message about a missing key manager configuration entry if SSL was not enabled.
1 files modified
9 ■■■■ changed files
opends/src/server/org/opends/server/protocols/jmx/JmxConnectionHandler.java 9 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/protocols/jmx/JmxConnectionHandler.java
@@ -427,8 +427,15 @@
    sslServerCertNickname = sslServerCertNickNameAtt.activeValue();
    //
    // Get the KeyManager, if specified,
    // Get the KeyManager, if specified.
    if (useSSL)
    {
    jmxKeyManager = getJmxKeyManager(configEntryDN);
    }
    else
    {
      jmxKeyManager = null;
    }
    // Create the associated RMI Connector
    rmiConnector = new RmiConnector(DirectoryServer.getJMXMBeanServer(), this);