Another demo of Dapr and Zeebe (Camunda)

After some time I went back to Dapr (v10) and Zeebe engine used in Camunda Platform 8. Updated projects to .NET 7 and tried again what I learned before and realized, I have to look back and refresh my memories. Some are like trying from scratch again.

I noticed few changes:

  1. Controllers must return a value, otherwise ends with JSON parsing issue. For empty ones I used something like NullResponse class.
  2. The method return value is automatically posted back to Camunda and becomes global.
  3. To follow REST rules and versioning, JobTypes and Controller names must be exactly as implemented here.
  4. There is a great Nuget Dapr Sidekick, thanks guys for that!

Project with this demo is available on GitHub.

2023

Another demo of Dapr and Zeebe (Camunda)

less than 1 minute read

After some time I went back to Dapr (v10) and Zeebe engine used in Camunda Platform 8. Updated projects to .NET 7 and tried again what I learned before and r...

Back to Top ↑

2022

Greetings to Camunda, Zeebe and Dapr!

1 minute read

It’s awesome to see how Dapr and Camunda workflow engine work well together. By using BPMN and DMN we completely remove business logic from the code and only...

Back to Top ↑

2021

Are your class constructors heavy?

3 minute read

One of OOP principles says, that every class should enter valid states only. The bigger class it is, the harder to do. Typically we use class constructors so...

Back to Top ↑

2020

Back to Top ↑