.Net & Camunda

Hello everybody,

I’m working on the integration of Camunda in a .Net complex Project. I’ve started using Camunda.Api.Client. Is it good?, and what would you recommend me to use for the Client? Camunda connect through Rest, but the Software is made with GraphQL could you please answer me how is the best way to deal with it.

Thanks in Advance
Omar Nader

It really depends a lot.
In most cases where you’re not using Java primarily i’d suggest the external task pattern.

This would mean you would treat camunda as an independent service where you can deploy your processes to it and were your .NET workers can use the rest api to register for work.

This seems like a good example for a .net worker https://github.com/AMalininHere/camunda-worker-dotnet

1 Like

Hello Niall,

Thanx a lot for your fast answer. I really appreciate it.

I’ve actually started using the external task pattern, because it suits more the case that I’m working on in my Bachelor thesis. The small problem that I’m facing now is that, unfortunately, there are not enough examples of this. I mean syntax problem. Is there any tutorial that u can recommend me, please?

Thanx a lot

Omar