Can I create a flowable workflow with C# code for script and service task? Is that possible?

Hi,

I am new to Flowable. I want to create a workflow which would call a wcf service and perform the operation, based on the outcome, it would decide to go to the next task. Can I write code in C# in Script or Service task. Kindly help on this!

Thanks,
Esther.

Hi Esther,

Possible - yes. I did similar thing with Kotlin.
The first think is to get/implement jsr232 interface on the C# interpreter (there should be already some implementations) after that integration with java/flowable is easy). just have a look on the script task implementation).
For me groovy is the perfect choice.
Regards
Martin

Thank you so much Martin!