Questions tagged [flowable]

Flowable is a light-weight business process engine written in Java. Use this tag for questions related to Flowable usage and workflows.

The Flowable process engine allows you to deploy BPMN 2.0 process definitions (an industry XML standard for defining processes), creating process instances of those process definitions, running queries, accessing active or historical process instances and related data. It can run as independent engine or as a service and can be integrated with Spring and Spring boot. It even supports DMN decision tables and CMMN case management engines.

Flowable is a fork of Activiti (registered trademark of Alfresco).

Official User Guide
GitHub page

154 questions
1
vote
1 answer

Unable to start tomcat 9 with flowable war- PUBLIC.ACT_DE_DATABASECHANGELOGLOCK error

I have downloaded flowable from flowable.com/open-source and placed the flowable-ui.war and flowable-rest.war in tomcat 9.0.52 webapps folder. When i start server after some time i can see below line repeating in cmd and server getting…
Gagan K.N.
  • 23
  • 4
1
vote
1 answer

Flowable Multi Instance Call Activity - Output Parameters

Having the following definition in my BPMN model (Flowable Engine):
Łukasz Rzeszotarski
  • 5,791
  • 6
  • 37
  • 68
1
vote
1 answer

Retrieve variables from flowable runtime service using springboot

I am using flowable with springboot and I would like to know how to retrieve variables inserted at the beginning of a process. Below is my attempt. I however have no idea of how to get the execution id. @Autowired private RuntimeService…
mpumi
  • 33
  • 5
1
vote
0 answers

Flowable - sending signal for legacy in-flight processes fail

We are on flowable 6.5 and have in-flight legacy processes which were created in Activiti 5.15 and continue to work in backward compatible flowable 5 engine. Problem - we are sending signal in legacy in-flight processes and it fails…
1
vote
1 answer

is it possible to change case model cmmn in flowable to another while processing

I'm new to flowable, I have the intention to use it as a case management system, but I have an important question about it which is: is it possible to change case model CMMN in flowable to another while processing? for example, I received a loan…
Sara
  • 111
  • 1
  • 5
1
vote
3 answers

RxJava: Skip all the errors in fromIterable() and notify subscriber when all the items are emitted - Flowable.parallel execution

I have an API call which verifies some status against an "Id". The API returns Single or error. I have a list of such Id's, Only one Id is valid to return success or none (all id's return error). What I need is, Iterate through each Id and skip the…
android_user
  • 91
  • 1
  • 4
1
vote
0 answers

Flowable not creating the directory in AKS volume for uploaded file

I created the Yaml (Deploy, PV, PVC, and Service) files for flowable to run on AKS. It's running and I can see the flowable browser UI. The problem is that when I start a process and the process has a form to upload the file, here I am getting an…
Ravindra Gupta
  • 1,256
  • 12
  • 42
1
vote
0 answers

How to test backPressure in RxJava using Observable?

I want to understand the the need for Flowable in RxJava. So I want to deal with backPressure for huge data with simple Observable. But I am not getting any error with it. this is my test code: Observable.range(1,…
Hadi
  • 544
  • 1
  • 8
  • 28
1
vote
2 answers

List all the tasks for a given Process in the order of execution

This is a basic functionality and I see repeated questions , but unfortunately no clear answer yet. How do I print/list all the tasks in the given process ( finished / unfinished ) in the order of execution. The two solution I found on the forum are…
madhairsilence
  • 3,787
  • 2
  • 35
  • 76
1
vote
1 answer

Failed Service Task state after application reboot

What happens to a failed Service Task when the application is restarted. Will it attempt to retry the Service task once again. If not, how does the Process proceed. Is there a way to manually retry the Service task ? I could see from Flowable API,…
madhairsilence
  • 3,787
  • 2
  • 35
  • 76
1
vote
0 answers

Flowable bpmn: configure parent id for sub tasks in a process

I'm using flowable engine api with java spring boot. I have a process that contains sub processes which have several tasks. the problem is when the tasks are created automatically by the engine, it sets the parent task id with null. Is there like an…
1
vote
1 answer

suspend the flowable process flow at user task

I am trying to suspend the process instance for user interaction to do an action like accept or reject the process flow. public class UserWorkflowTaskListener implements ExecutionListener { @Override public void notify(DelegateExecution…
Ravindra Gupta
  • 1,256
  • 12
  • 42
1
vote
1 answer

FLOWABLE: Authenticating flowable-task from another application via rest call

So, I am creating an application which will be using flowable. We can say that once my application starts, it's gonna start a particular process deployed on flowable, proceed ahead accordingly. So, in a way there will be lot of talking between…
Akki
  • 754
  • 7
  • 22
1
vote
1 answer

How can I clear all test data between two unit testing method?

I want to write some unit tests for Flowable, but different methods may have data conflicts. What should I do to clear the test data between two test methods? I tried the annotation @DirtiesContext but it didn't…
wangbin
  • 21
  • 6
1
vote
1 answer

Maven dependency not exist for flowable

Trying to find the java maven dependency of flowable, I found the maven repository of flowable here When I am trying to search the org.flowable in maven dependency it not showing any.
Ravindra Gupta
  • 1,256
  • 12
  • 42
1 2
3
10 11