How to handle technical errors on connector in camunda?

Can anyone suggest way out to handle technical errors on connector in camunda?

We have currently moved connector implementation from activity to java delegate. If anyone has any other best solution then please share.

Hey @Pradip_Patil ,

have you tried External tasks for your implementation? At the moment it is not trivial to handle technical errors with connectors. Indeed a better way to implement REST calls are Java Delegates or External Tasks (if you want to implement the REST calls in a different language).

I hope that helps
Kind regards
Nele

My interface call is synchronous hence we have not choosen External task. In case of asynchronous call external task (Queue-topic) is useful. Anyhow we have implemented it using java delegate we can close this topic.