public static void getOrbValues(HandlerContext handlerCtx) {
String configName = (String) handlerCtx.getInputValue("ConfigName");
ConfigConfig config = AMXUtil.getConfig(configName);
IIOPServiceConfig iiopConfig = config.getIIOPServiceConfig();
ORBConfig orbConfig = iiopConfig.getORBConfig();
String threadPoolId = orbConfig.getUseThreadPoolIds();
String maxMsgSize = orbConfig.getMessageFragmentSize();
String totalConns = orbConfig.getMaxConnections();
boolean iiopClient = iiopConfig.getClientAuthenticationRequired();
Map<String, String> props = orbConfig.getProperties();
handlerCtx.setOutputValue("ThreadPools", threadPoolId);
handlerCtx.setOutputValue("MaxMsgSize", maxMsgSize);
handlerCtx.setOutputValue("TotalConns", totalConns);
handlerCtx.setOutputValue("IIOPClient", iiopClient);