Questions tagged [activiti]

Activiti is a workflow and Business Process Management (BPM) engine. Its core is a BPMN 2 process engine for Java. It's open-source and distributed under the Apache 2 license.

The Activiti core is a BPMN 2 process engine for Java. It is open-source and distributed under the Apache license. Include the tag if the question could also apply to other BPM engines.

Useful links

1288 questions
5
votes
0 answers

How can I integrate activiti workflow engine with Vertx?

In our project, we are using Vertx and want to process our request with a workflow engine because we have different tasks in our request. I went through activiti WFE but found only spring integration example. How can I integrate it with Vertx?
Ravat Tailor
  • 1,193
  • 3
  • 20
  • 44
5
votes
2 answers

what is difference between setVariable and setVariableLocal in activiti?

What is the difference between setVariable and setVariableLocal methods in activiti? and when will use these methods.
rezvaniRad
  • 91
  • 5
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
3 answers

Activiti - how to set condition for exclusive gateway in Java

I have an exclusive gateway in Activiti, how I can set the condition variable in Java code for exclusive gateway? variableData.put("condition", conditionVar); taskService.complete(task.getId(), variableData); How I can extract task variable on…
J-Alex
  • 6,881
  • 10
  • 46
  • 64
5
votes
1 answer

What is difference between Stardust and Activiti

I'm trying to select an open BPMN tools for my project, I found Infinity/Stardust from Eclipse and Activiti. What are the differences/advantages between these BPMN tools ?
Linus
  • 880
  • 13
  • 25
5
votes
2 answers

Complex Activiti + JPA queries

We are trying to use Activiti in a new project. I've created a setup which uses Hibernate through JPA for persisting entities involved in the process and JPA is interconnected with Activiti so we can use these entities as JPA variables. See: JPA…
NagyI
  • 5,907
  • 8
  • 55
  • 83
5
votes
5 answers

What are the differences between open source BPM tools (such as Activiti, bonita) & Windows Workflow Foundation

I was trying to find a free and open source BPM tool which is based on asp.net, but unfortunately i fail to find such a tool. But recently I read an article about Windows Workflow Foundation, so does it provide functionality that are similar to…
5
votes
1 answer

activiti 5.9 using a hibernate session possible?

is it possible to use activiti together with hibernate instead of mybatis? The case is that our actual project uses hibernate as persistence framework and we use jbpm 3 for the processes. In jbpm 3, it was possible to use a single hibernate session,…
Chris S.
  • 323
  • 1
  • 4
  • 13
4
votes
2 answers

Calling spring bean from alfresco activiti process

Within alfresco activiti, could I call a spring bean using the servicetask like :
4
votes
2 answers

Activiti deadlock occurs under JMeter performance test

I have a problem with activiti concurrency. We have a wicket spring application with embedded activiti workflow engine. It works fine without concurrent users, but during jmeter performance test activiti creates deadlock on its own tables. For…
lepike
  • 726
  • 3
  • 11
4
votes
3 answers

How can I access a spring bean in Activiti JavaDelegate?

I'm trying to get a simple Spring example to work with Activiti 5.5, and having some trouble. I'm using the process engine configured with activiti under %activiti_home%/apps/apache-tomcat-6.0.32/webapps/activiti-rest. I modified the spring config…
Griff
  • 1,796
  • 3
  • 23
  • 48
4
votes
1 answer

LocalDateTime and JodaDate conflicts

I'm creating a multi module Maven project using spring MVC, hibernate, Spring Data JPA project. Currently I have integrated an Activiti workflow engine and using Joda date dependency. But my model class use java 8 LocalDateTime. Spring Data JPA…
Sandun Chathuranga
  • 2,242
  • 2
  • 13
  • 27
4
votes
0 answers

Workflow execution is looping infinitely at a wait timer

We have a workflow that executes a task to check for a record in DB when data is not found it waits for a minute and execute the task. Below is the excerpt from our workflow.
4
votes
1 answer

Camunda Cockpit and Rest API down but application up/JobExecutor config

We are facing a major incident in our Camunda Orchestrator. When we hit 100 running process instances, Camunda Cockpit takes an eternity and never responds. We have the same issue when calling /app/engine/. Few messages are being consumed from…
Lho Ben
  • 2,053
  • 18
  • 35
4
votes
1 answer

Spring new transaction combined with Retryable

If I have a method that has a Spring retryable for a certain exception, and also has a Transactional(Requires_new), every time the retry is done, will it create a new transaction or use the existing one? ie @Retryable(maxAttempts = 5, backoff =…
Crackers91
  • 149
  • 3
  • 16
1 2
3
85 86