I am a newbie to Camunda’s BPMN, so I have a lot of questions.
I am currently working on python rest APIs and would like to call those APIs inside of the BPMN.
It should be called through requests.
But, if I use http-connector to call APIs, it gives me error. {“type”:“ConnectorRequestException”,“message”:“HTCL-02007 Unable to execute HTTP request”}
and I have no idea how to do http call inside of the external task.
Would you please share any tutorials or documentation that I could figure out?
If you use a REST client like PyCamunda the HTTP connector implementation is not the right one to choose. You need to implement your Services as External Tasks and match the topic name to your External task workers.
Could you share your bpmn model and your code? This way it is easier to see what exactly is missing