Update the properties of the replication related configuration.
void updateReplicationConfiguration(SUPConfigurationComponentVO configurationComponent) throws SUPAdminException;
If successful, returns silently. If unsuccessful, throws SUPAdminException.
SUPConfigurationComponentVO confVO = supConf.getReplicationConfiguration(); confVO.getProperties().put("sup.sync.port", "2480"); confVO.getProperties().put("sup.sync.httpsport", "2481"); confVO.getProperties().put("sup.sync.protocol", "http,https"); confVO.getProperties().put("sup.sync.e2ee_type", "RSA"); confVO.getProperties().put("sup.sync.e2ee_private_key", "Repository/Certificate/e2ee_private_key.key"); confVO.getProperties().put("sup.sync.e2ee_private_key_password", "sybase1"); confVO.getProperties().put("sup.sync.e2ee_public_key", "Repository/Certificate/e2ee_public_key.key"); confVO.getProperties().put("sup.sync.certificate", "Repository/Certificate/https_server_identity.crt"); confVO.getProperties().put("sup.sync.certificate_password", "sybase1"); confVO.getProperties().put("sup.sync.public.certificate", "Repository/Certificate/https_public_cert.crt"); confVO.getProperties().put("relayserver.trusted_certs", ""); confVO.getProperties().put("sup.user.options", "-zf"); supConf.updateMessagingConfiguration(confVO); supConf.commitClusterConfiguration();