SecurityActions.getSystemProperty(ServerEnvironment.NODE_NAME), endpointType, options, null, null);
// Install the communication services
final int port = managementSocket.getPort();
final String host = managementSocket.getAddress().getHostAddress();
HostControllerConnectionService service = new HostControllerConnectionService(host, port, serverName, serverProcessName, authKey, managementSubsystemEndpoint);
serviceTarget.addService(HostControllerConnectionService.SERVICE_NAME, service)
.addDependency(endpointName, Endpoint.class, service.getEndpointInjector())
.addDependency(ControlledProcessStateService.SERVICE_NAME, ControlledProcessStateService.class, service.getProcessStateServiceInjectedValue())
.setInitialMode(ServiceController.Mode.ACTIVE)
.install();
} catch (OperationFailedException e) {
throw new ServiceRegistryException(e);