Adds a new HTTPS listener configuration.
void addSecureHTTPListenerConfiguration(ServerComponentVO serverComponent) throws SUPAdminException;
If successful, returns silently. If unsuccessful, returns SUPAdminException.
supServerConf.refresh();
ServerComponentVO scvo = supServerConf.getSecureHTTPListenerConfigurations()
.iterator().next();
ServerComponentVO scvo_new = new ServerComponentVO(scvo.getID(), scvo.getType());
Map<String, String> properties = scvo.getProperties();
properties.put("sup.socket.listener.port", "8001");
properties.put("sup.socket.listener.enabled", "true");
scvo_new.setProperties(properties);
supServerConf.addSecureHTTPListenerConfiguration(scvo_new);
supServerConf.commit();