Hi all,
I just started with the Camunda 8 and I was going through the Camunda 8 Developer Learning Path…
Here I’m stuck on the JobWorks assignement. I have created a maven project in IDE and wrote the class about the Jobworker, created a cluster and all that things.
The task is simple, onlz one task that should communicate with a JobWorker to finish it (see picture)
I don’t understand why the JobWorker is not working… without error messages it is actually not possible that to find out.
Do someone has an idea, where is the problem?
Hi @DeniVele
As I see in your BPMN file the job type is named “ChargeCreditCard” but in the code, the jobType variable is set to “foo” at the top, and //.jobType("ChargeCreditCard") is commented out.
Try to use .jobType("ChargeCreditCard") instead of .jobType(jobType) in creditCardWorker.
Thanks for the reference. The problem was that in the code I have “chargeCreditCard” and in the BPMN “ChargeCreditCard”
A letter difference that broght me to madness