EsbActionHandler esbActionHandler = new EsbActionHandler();
EPR epr = esbActionHandler.createReplyTo(esbToBpmVars.asXML(), Boolean.FALSE, executionContext);
String esbToBpmXml = epr.getAddr().getExtensionValue(Constants.ESB_TO_BPM_VARS_TAG);
//Obtaining the VariableMap that is going to be set callback command
Map<String,Object> variableMap = mapper.mapFromEsbMessageToJBpmMap(message, esbToBpmVars.asXML());
logger.info(variableMap);
//Let's make sure that what we put in is going to make it roundtrip.
assertEquals(helloWorldTokenScope, variableMap.get("x1"));
assertEquals(helloWorldGlobalScope,variableMap.get("x2"));
}