SSDRootObject ssdSettingsData = ssdCtx.getRootObject();
SSDObjectNode ssdConfiguration = ssdSettingsData.getNode(HPIConstants.CONFIGURATIONS_CONFIG_SERVER);
int portNumber = Integer.parseInt(ssdConfiguration.getLeaf(HPIConstants.CONFIGURATIONS_PORT_NUMBER).getValue());
HPIClientProtocol clientProtocol = new HPIClientProtocol("127.0.0.1", portNumber);
ServerShutdownResponse shutdownResponse = clientProtocol.serverShutdown();
log.info(shutdownResponse.getMessage());
} catch (Exception e) {
log.error(e);
System.exit(1);