Hi guys,
I'm trying to get a working example up and running under the same scenario (activiti and mule running on different JVMs).
You can have a look at my BPMN process in the helloMule file attached.
and at one point from my application I'm calling:
Map<String, Object> variableMap = new HashMap<String, Object>();
variableMap.put("var1", "hello");
variableMap.put("anotherVar", "aloha");
runtimeService.startProcessInstanceByKey("helloWorldMule", variableMap);
but I get an exception org.activiti.engine.ActivitiException: Failed to read response value
I don't know if I'm doing something wrong in my BPMN process or if the Mule flow is doing something wrong.
Any help with this would be greatly appreciated.
Thank you.