Hi,
I’m currently working on camunda 8 Saas.
I have this type of project structure.
Here bpm-process-c8 contains all the worker and connection to zeebe is also made in this project only.
I’m able to start process from here using ZeebeClient but what ever worker I have written is not getting triggered.
public String startCamundaProcess(){
final ProcessInstanceEvent processInstanceEvent= client.newCreateInstanceCommand()
.bpmnProcessId("test")
.latestVersion()
.send()
.join();
return processInstanceEvent.toString();
}
This code is working fine and process is getting started.
But when I’m running this project separately it is working fine and all the workers also getting triggered.
I’m not able get it exactly where I’m going wrong.
Zeebe version -8.5.0
Java - 17
Springboot-3.2.5
ThankYou