Questions tagged [camunda]

camunda BPM is a light-weight, open source platform for Business Process Management and Execution.

Camunda Platform is a lightweight, open source platform for process automation. The name comes from the Latin verbs "capere" ("to comprehend") and "munda" ("clean").

Camunda Platform uses the and standards to enable collaboration between business and IT users.

The platform is maintained and developed by Camunda Services GmbH, founded in March 2008 in Berlin, Germany.

1170 questions
5
votes
2 answers

pass json in process variables in camunda process

I am trying to pass json payload in variables as value to start a process definition using engine-rest api as below:- API: http://localhost:8080/engine-rest/process-definition/processService:1:9459dbe9-6b2c-11e8-b9e8-28d2447c697a/start Body : { …
Prashant Bhagat
  • 83
  • 1
  • 1
  • 5
5
votes
1 answer

running camunda with Spring boot & mongodb

Has anyone been able to get Camunda to run with Spring Boot and mongodb? I tried several approaches and always got into a brick wall. What I tried: 1. jpa / hibernate-ogm I was able to initiate a connection to mongo after creating my own…
Amnon
  • 2,212
  • 1
  • 19
  • 35
5
votes
2 answers

BPMN - Wait for an event once

I am having trouble modeling one particular use case. Task 1 and Task 2 are spawned in parallel. Task 1 is repeated multiple times based on a condition. Once the first Task 1 is completed, we must wait for Task 2 completion before continuing. Which…
Guillaume Morin
  • 3,910
  • 6
  • 25
  • 40
5
votes
1 answer

Camunda: how to model task that can be cancelled?

I want to model a process that can be initiated by receipt of a message (which will be done via a REST call). The process will lead to a task that is assigned to a user. The user will supply some extra information and then the process will…
John
  • 10,837
  • 17
  • 78
  • 141
5
votes
3 answers

Receivetask in camunda is not working as expected

We have been using camunda 7.4 version in most of our projects along with camunda-bpm-spring-boot-starter 1.1.0. We have a project where in the camunda flow we try to publish a message to a message broker which internally is consumed by another…
5
votes
1 answer

Wiring Spring Security into Camunda Engine, what to override?

I successfully managed to integrate Spring Security with Camunda's IdentityService. My goal is to share a common auth realm between the two, because we have a spring-boot based web app that also runs camunda. In our application, Spring Security…
gyorgyabraham
  • 2,550
  • 1
  • 28
  • 46
5
votes
2 answers

Comparison between Camunda and Alternatives (Activiti)

I'm doing a comparison between Camunda & other alternatives (eg. Activiti) as a part of a feasibility study. I would appreciate your help if you can enhance my research by providing with a quick comparison specially between Camunda & Activiti but i…
user6438693
5
votes
1 answer

Usage of send and receive task in camunda BPMN

I am using a send task to which the following Javadelegate class is attached. public class SendTaskDelegate implements JavaDelegate { public void execute(DelegateExecution execution) throws Exception { execution.getProcessEngineServices() …
pallavi
  • 95
  • 2
  • 9
5
votes
1 answer

Deploying to a camunda process engine

I want to achieve the following: Have a camunda-7.3 prepackaged distro running with the rest-api. Have another server, lets say a wildfly server, running with a vaadin application deployed. From within in the vaadin application, I want to create a…
Dominik Mohr
  • 827
  • 9
  • 19
5
votes
1 answer

How to query finished instances of a process definition?

Does the camunda engine provides an API to query all finished instances of a process?
mschoe
  • 314
  • 1
  • 3
  • 10
4
votes
1 answer

Camunda tests stop working after asyncBefore flag set to true for bpmn start event

Using tests from official Camunda Github repo: https://github.com/camunda/camunda-bpm-assert examples folder contains a few bpmn files and tests, by default all works fine, all tests successfully passed, but when I set flag Asynchronous Before for…
user471011
  • 7,104
  • 17
  • 69
  • 97
4
votes
0 answers

Is there a way in Camunda REST API to retrieve task’s form field property?

Camunda Modeler can let us set form field properties for tasks. I would like to use this feature to store some information for frontend input field rendering, e.g. inputtype=file for file upload selector. Unfortunately, I found that the REST API…
mannok
  • 1,712
  • 1
  • 20
  • 30
4
votes
1 answer

Camunda Can't find scripting engine for 'python': scriptEngine is null

The process could not be started. : Cannot instantiate process definition Process_03eqpht:3:7ff29d88-51a6-11ec-820b-4e796e7082df: Can't find scripting engine for 'python': scriptEngine is null I have install camunda and running it but when i run…
Himanshu sharma
  • 7,487
  • 4
  • 42
  • 75
4
votes
0 answers

Camunda Task List - Automatically preview / open User Task if assigned to current user

I would like my Camunda task list to automatically display the next task form if next task is assigned to the current user. At the moment this only happens on a click event , that fires the focus function, within a ng repeat of all…
4
votes
1 answer

How to set up Camunda for unit testing in Spring Boot

I am able to run a Spring Boot application with Camunda for workflow management. My pom.xml with Camunda related dependencies are shown below. ... org.camunda.bpm
user3573403
  • 1,780
  • 5
  • 38
  • 64
1 2
3
77 78