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

Unix timestamp conversion to ISO 8601 in a Groovy script

I am new to Groovy and I'm engaged in a project where Groovy scripts are used. I need to convert a Unix timestamp to ISO 8601 format in a Groovy script. I couldn't find a straightforward and simple solution yet. I have the following code…
dab92
  • 155
  • 8
0
votes
0 answers

Flowable Open Source REST API Setup in Ubuntu 18.04

I followed instructions given in Flowable Getting Started Guide to setup Flowable REST API on Ubuntu 18.04. After running sudo ./catalina run, I do get Apache Tomcat up and running on port 8080. However, when I try REST APIs of flowable-rest, I get…
dab92
  • 155
  • 8
0
votes
1 answer

How to Restart a Workflow From the Task Associated With a Given Status

I need to create a workflow that lets the user retrieve an entity from the database, review it, and finally approve or discard it. If the user approves the entity, the application just updates its status to APPROVED, otherwise if the user discards…
j3d
  • 9,492
  • 22
  • 88
  • 172
0
votes
2 answers

Flowable BPMN with DMN using Java API

I am new to Flowable and exploring its features by using Flowable JAVA API. Have managed to design a bpmn flow and execute it using ProcessEngine of flowable-engine java library from Flowable. org.flowable
Samy
  • 2,387
  • 2
  • 17
  • 31
0
votes
0 answers

deploying / starting flowable war file on tomcat server mac os

I am trying to deploy and start 2 WAR files flowable provides to check out the application. I got Java 14 installed, Tomcat 10.x and Maven. Added the 2 WAR files into the webapps folder of Tomcat and then I am running the ./startup.sh in the bin…
Atropos
  • 13
  • 1
  • 5
0
votes
0 answers

Flowable.fromIterable never ends. It never reaches .subscribe() - Android RxJava

I am trying to obtain a List of Documents, then trying to send each doc to the server and delete if from the database and phone. The thing is that it looks like it never arrives to the .subscribe method of the Fragment, it is like is stuck at the…
mantc_sdr
  • 451
  • 3
  • 17
0
votes
1 answer

How to improve the latency in BPM event dispatcher?

We have two events in the BPM. One makes a call to a microservice and ends. The microservice will respond with completion and the another event will capture the completion response. But sometimes, the completion response is received even before the…
brate
  • 3
  • 3
0
votes
1 answer

couldnt create db schema "ACT_RU_IDENTITYLINK" in flowable engine

I have Spring Boot (2.3.4) app runs on Tomcat (9). When i try to build the project, flowable(6.6.0) engine gives this error. Schema is already created but it tries to create again. My problem is, i cannot deploy war code to the server because of…
someone
  • 45
  • 6
0
votes
0 answers

Flowable project build issue in eclips

Flowable project build issue in eclipse The project build was successful, but multiple modules showing the famous eclipse "red x" error. have already tried to remove the error by using the clean and build approach The Progress tab in eclipse…
K Guru
  • 1,292
  • 2
  • 17
  • 36
0
votes
1 answer

Migrate data from MySQL to Flowable

Current version of our application holds data in MySQL. We have a new version, which is developed in Flowable. What is the best way to migrate data from MySQL to Flowable? Is there any APIs available to do this task? If not, is there…
Sreekanth Mohan
  • 340
  • 4
  • 29
0
votes
0 answers

Flowable load a bytearray column as BLOB

I got an error when running flowable for couple of days. Exception occurred during processing of request. BreadcrumbID:|sJdgH.q/WQp org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause:…
dk_016
  • 36
  • 1
  • 5
0
votes
1 answer

Observer onChanged just called once - LiveData + Flowable (LiveDataStreams)

I am trying to observe the data inside a specific table by getting the elements using a Flowable>, converting it to LiveData by using the library LiveDataStreams and then observing this last one. The observation must start on button click.…
mantc_sdr
  • 451
  • 3
  • 17
0
votes
1 answer

Migrate Activiti 5 BPMN process to Flowable 6

I am migrating my Activiti 5 process instances to Flowable 6.5 follow the Flowable's guide at https://blog.flowable.org/2019/08/07/migration-of-a-bpmn-process/ and…
Minh
  • 17
  • 4
0
votes
1 answer

Activiti to Flowable, how to migrate .bpmn files process definition

I am migrating an application bpmn engine from Activiti 5 to Flowable 6. Currently I have an issue as my current process definition to used in Actitivi 5 is .bpmn files, so if I want to used them in Flowable 6, do I need to do any modification? P/s:…
Minh
  • 17
  • 4
0
votes
1 answer

Flowable 6, how to get comand context

I am a newbie to Flowable 6, when I call Context.getCommandContext(), in some cases it return a null object. My question is that which conditions are needed to have a command context?. And in my case, if it is null, can I manually add one. If yes,…
Minh
  • 17
  • 4