Hello, I am currently trying to test some web services but I am facing the current issue.
I am doing something in project A, then calling a separate Call Activity in project B.
Both projects know the “Order” object. They have dependencies to a common project that contains the order. Everything works fine here.
The problem is that in the first part of the workflow I am setting some variables (like “Customer” for example), Objects which are only in project A. Project B does not know this class.
The exception I get is Caused by: org.camunda.bpm.engine.ClassLoadingException: ENGINE-09017 Cannot load class “Customer”.
One way of solving this is adding project A to project B as a dependency, or moving the Customer class to the common project. This is unfortunately not an option.
Also, I am not sending all variables to service B, only the order. I am not sure why this is happening. Is there possibly a workaround?