if (context.isNormalServer() && context.getServiceRegistry(false).getService(ContainerEventHandlerService.SERVICE_NAME) != null) {
context.addStep(new OperationStepHandler() {
@Override
public void execute(OperationContext context, ModelNode operation) throws OperationFailedException {
ServiceController<?> controller = context.getServiceRegistry(false).getService(ContainerEventHandlerService.SERVICE_NAME);
ModClusterServiceMBean service = (ModClusterServiceMBean) controller.getValue();
Map<InetSocketAddress, String> map = service.getProxyConfiguration();
ROOT_LOGGER.debugf("Mod_cluster ProxyConfiguration %s", map);
if (!map.isEmpty()) {
final ModelNode result = new ModelNode();
InetSocketAddress[] addr = map.keySet().toArray(new InetSocketAddress[map.size()]);
for (InetSocketAddress address : addr) {