Business Process Calling Across Multiple Camunda Springboot Application

Hi All,

Can any one tell me how to call Business Processes across multiple separate Camunda Springboot Applications?

Thanks in Advance
SG

Assuming that by “separate” you mean “not sharing a common database”, another camunda application can be seen as just a different service … so basically, you have to decide between sync (REST) or async (messaging (kafka,…)) to implement communitcation between them.

If you chose synchronous communication, check out the feign-based extension https://github.com/camunda/camunda-rest-client-spring-boot. it implements the services interfaces and lets you call a remote camunda engine as if it where local.

1 Like

Thank You jangalinski. If I want to keep the same process DB for both the springboot application?