Operation oper = Operation.getOperation(s);
Collection<PropertySimple> props = configuration.getSimpleProperties().values();
SimpleValueSupport[] params = new SimpleValueSupport[props.size()];
SimpleValueSupport[] signature = new SimpleValueSupport[props.size()];
populateParams(props, params, signature);
ArrayValueSupport param = new ArrayValueSupport(new ArrayMetaType(SimpleMetaType.STRING, false));
param.setValue(params);
ArrayValueSupport sig = new ArrayValueSupport(new ArrayMetaType(SimpleMetaType.STRING, false));
sig.setValue(signature);
SimpleValueSupport queueName = new SimpleValueSupport(SimpleMetaType.STRING, resourceContext.getResourceKey());
SimpleValueSupport methodName = new SimpleValueSupport(SimpleMetaType.STRING, oper.getOperationName());
ManagementView view = getProfileService();
String methodOperation = getInvokeOperation();