
How to parse JSON using (Inline) JavaScript in Camunda BPM
Apr 19, 2018 · Camunda Spin is a wrapper around Jackson that Camunda provides for JSON (and XML) processing. While I find it very helpful for processing JSON in Java, I prefer …
Camunda: How to get DMN to emit two variable/values to context …
Jan 19, 2020 · at org.camunda.bpm.engine.impl.interceptor.AtomicOperationInvocation.execute(AtomicOperationInvocation.java:96) …
camunda - BPMN2 timer events how to repeat after a delay
Nov 14, 2023 · I am new to BPMN and camunda. How to implement this: I have a user task, I want to set a timeout, let’s say 3 days. If user don’t complete the task in 3 days, every hour I …
How to check using expression if process variable is exist in …
May 24, 2021 · I want to check at exclusive gateway if processInstance exist.I can check if the value of processInstance is set to null or not.
serialization - Camunda external Java task: "Cannot deserialize …
Oct 3, 2022 · I am implementing a Java ExternalTaskHandler, to handle a Camunda External Task. I am returning an array of objects as a result of the task. Unfortunately when I return this …
How to add a collection / array variable in Camunda 7 console
Aug 13, 2024 · I have a basic Camunda 7 setup on Apache tomcat and am currently trying to experiment with Parallel Multi Instance task. But for the most basic part which is about having …
camunda - How to model an optional user task in a default …
Apr 19, 2024 · Here is an example of what your model would look like with the exclusive gateway for the optional task: BPMN model with optional user task I would highly recommend taking a …
Camunda : How to locate the step in my workflow that provoke ...
Jan 21, 2021 · Under heavy load we are experiencing a lot of OptimisticLockingException exceptions and job reties for some of our processes (which causes a lot of trouble). When not …
java - Camunda : Skip a process instance from a given task to …
Mar 19, 2021 · Is there a way to do this given that I have businessKey, the target taskId and camunda java api library? As per camunda docs, there is this feature for process instance …
How do parallel multi instance loop work in Camunda 7.16.6
Aug 1, 2022 · I'm using the camunda-enginge 7.16.6. I have a Process with a multi instance loop like this one that repeats parallel a 1000 times. This loop is execute parallel. My assumption …