@HandlerOutput(name="Properties", type=Map.class)})
public static void getHttpService(HandlerContext handlerCtx) {
ConfigConfig config = AMXUtil.getConfig(((String)handlerCtx.getInputValue("ConfigName")));
HTTPServiceConfig hConfig = config.getHTTPServiceConfig();
try{
handlerCtx.setOutputValue("Properties", AMXUtil.getNonSkipPropertiesMap(hConfig, httpServiceSkipPropsList));
Map origProps = hConfig.getProperties();
handlerCtx.setOutputValue("accessLogBufferSize", origProps.get("accessLogBufferSize"));
handlerCtx.setOutputValue("accessLogWriteInterval", origProps.get("accessLogWriteInterval"));
String alog = (String) origProps.get("accessLoggingEnabled");
Boolean accessLoggingEnabled = true;
if ( GuiUtil.isEmpty(alog))