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
7
votes
1 answer

What are the benefits of using expression Delegates over Java classes?

Are there some benefits to use expression delegate over java class in camunda
Paul Guey
  • 145
  • 2
  • 6
7
votes
3 answers

WebService Task in Camunda

In Camunda BPM designer, I couldn't find activity and for invoking a REST or SOAP based webservices. Is it only possible to invoke through wiring code? How do I pass payload to the code if it needs to be written using java code. Regards, Phani
Srinivas
  • 1,383
  • 5
  • 20
  • 28
7
votes
1 answer

Add custom Job to jobexecutor

Is it possible (and if so: how) to add a custom Job to the jobexecutor in camunda BPM? My requirement is to execute a process-related Service by Timer or Loop. I do NOT want to model this in the BPMN directly, since it is not really part of the…
Jan Galinski
  • 11,768
  • 8
  • 54
  • 77
6
votes
2 answers

java.lang.ClassNotFoundException: Unable to load class: com.microsoft.sqlserver.jdbc.SQLServerDriver on new docker container

I am trying to create a docker image with Sql server JDBC Driver. However I am getting this error: Caused by: java.lang.ClassNotFoundException: Unable to load class: com.microsoft.sqlserver.jdbc.SQLServerDriver from…
Luis Valencia
  • 32,619
  • 93
  • 286
  • 506
6
votes
1 answer

How to translate the Java double colon operator (::) to Scala?

I want to use camunda-bpm-assert-scenario in my ScalaTests. There I have this code with receiveTask::receive: when(documentRequest.waitsAtReceiveTask("ReceiveTaskWaitForDocuments")).thenReturn((receiveTask) -> { receiveTask.defer("P1DT1M",…
pme
  • 14,156
  • 3
  • 52
  • 95
6
votes
1 answer

Camunda: How pass variable from parent process to subprocess. (which is started by event)

I have a process which creates a sub-process by event. I would like to pass a variable from the parent process to the sub-process. One way which I found is by using: MessageCorrelationResult result = runtimeService …
user1321466
  • 1,889
  • 2
  • 21
  • 29
6
votes
1 answer

Camunda Spring Boot starter with embedded forms

I am trying to use embedded forms with a start event with the Camunda spring boot starter. My startEvent is described like this:
javahippie
  • 806
  • 10
  • 25
6
votes
3 answers

Activiti / Camunda change boundary timer with variable

I got a special question regarding timer boundary events on a user task in Activiti/Camunda: When starting the process I set the timer duration with a process variable and use expressions in the boundary definition to resolve the variable. The…
theFriedC
  • 424
  • 7
  • 20
5
votes
1 answer

Application History is not getting generated in formsflow.ai

I am using Opensource formsflow.ai version v4.0.2. This is the Repo Link. I could get the Repo up and Running using docker deployment as instructed. I had created a form and BPMN workflow for a specific use-case in formsflow.ai. The BPMN workflow is…
crystalthinker
  • 1,200
  • 15
  • 30
5
votes
3 answers

Separate microservice just for microservices orchestration?

I have a few microservices where each microservice has REST endpoints for CRUD operations. I have to create a workflow that will start from one microservice with some initial input, but later outputs from a microservice can be used as input to other…
hsingh
  • 661
  • 5
  • 26
5
votes
1 answer

Can Camunda provides same features as Zeebe for Microservices Orchestration?

I have read that Zeebe (https://zeebe.io/) from Camunda is created specifically for Microservices Orchestration. I know there is some difference related to performance. My question is "Can I achieve the same thing using Camunda what I can do with…
hsingh
  • 661
  • 5
  • 26
5
votes
1 answer

Camunda BPM : CSRFPreventionFilter: Invalid HTTP Header Token

I am starting with camunda BPM so I am using https://start.camunda.com/ to create camunda spring boot application. I have created admin user with dummy/dummy credentials I have kepy spring security options as off over there as start. Starter…
5
votes
0 answers

Camunda memory leak in spring boot starter

we use camunda as our process engine and have like 10K running processes in production. The problem is, that our service goes instantly about once a day out of memory. Here is a screenshot of grafana, which shows the memory consumption. We tried to…
Andrej Tihonov
  • 649
  • 2
  • 9
  • 21
5
votes
2 answers

Camunda cannot execute groovy script

Here is my dependencies. compile group: 'org.camunda.bpm.springboot', name: 'camunda-bpm-spring-boot-starter-webapp', version: '3.0.0' compile group: 'org.camunda.bpm.springboot', name: 'camunda-bpm-spring-boot-starter', version: '3.0.0' compile…
OnTheRoad
  • 527
  • 6
  • 24
5
votes
5 answers

How to use ProcessEngineRule in a Junit test for Camunda Spring Boot application?

I try to run JUnit test for a Camunda Spring Boot application. I followed Testing: JUnit 4 Using the JUnit 4 style of writing unit tests, the ProcessEngineRule must be used. Through this rule, the process engine and services are available through…
dur
  • 15,689
  • 25
  • 79
  • 125
1
2
3
77 78