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
0 answers

How to activiti Expressions invoked spring bean

The bpmn file has been deployed to the db. activiti Docs hello.bpmn20.xml shows how a method on a Spring bean can be invoked using a UEL method expression If the code where the Printer is located is multi-instance deployment, all instances are…
munan
  • 353
  • 1
  • 2
  • 9
0
votes
1 answer

How do we call a custom java bean from a service task defined in BPMN xml file?

I am trying to use a boundary timer event in BPMN XML file , to trigger the service task which will call out a custom java bean after some period defined in timer definition. Below is the implemented code:
0
votes
0 answers

True parallel http task

While i was going through this doc, flowable already supports true parallel http task execution, when i executed below multiinstance process model and parallelInSameTransaction field is set to true i could still see optimistic lock exceptions while…
Abhinav manthri
  • 151
  • 1
  • 14
0
votes
1 answer

Delete record from table ACT_GE_BYTEARRAY

I have lot of records in table ACT_GE_BYTEARRAY. I want to keep only the last 15 days. I don't want to use the config.setEnableHistoryCleaning(true) and I am trying to do it manually. I am trying to figure out which rows to delete from…
Manjunath
  • 9
  • 2
0
votes
0 answers

How do you close a cold observable gracefully after certain time has elapsed from subscribe?

Assume below code which processes data from a paginatedAPI (external). Flowable process = Flowable.generate(() -> new State(), new BiConsumer>() { void accept() { //get data from upstream…
gGwP
  • 35
  • 1
  • 6
0
votes
0 answers

Groovy - How to print all variables in scope of script engine?

I am building workflows using a proprietary engine leveraging Flowable. The engine comes with preloaded beans that can be used from groovy script tasks and I would like to introspect all variables in scope. I used the following…
0
votes
0 answers

How to set admin users group for Flowable using Ldap

I'm using Flowable 6.7.2 OpenSource and I want to integrate it with AD using LDAP. I've changed several properties in flowable-default.propierties (flowable.idm.ldap.*) and I can login with the AD user to the flowable-ui module actually but he can't…
dj_universe
  • 372
  • 5
  • 17
0
votes
1 answer

How can I get the process with SpingBoot 2.7.3 and Flowable 6.7.2?

I have a Controller: @RestController @RequestMapping("processes") public class ProcessController { @Autowired private ProcessEngine processEngine; @Autowired private RepositoryService repositoryService; @GetMapping public…
0
votes
2 answers

No outgoing sequence flow of the exclusive gateway 'exclusivegateway8'

New to flowable, seeing this error in one of the existing workflow, can someone help to understand this issue ? or navigate to right resource for this. ? isLogged = false reduceLogLevel = false detailMessage = "No outgoing sequence flow of the…
Dhiral Kaniya
  • 1,941
  • 1
  • 19
  • 32
0
votes
2 answers

Flowable Pipeline to Azure Container Registry: "aad access token with sp failed client id must be guid"

I have a Azure Devops Pipeline where i want to build the flowable docker images. The pipeline looks like this: steps: - script: | curl -L https://aka.ms/acr/installaad/bash | /bin/bash displayName: 'Install ACR Helper' - task: AzureCLI@2 …
erbg
  • 316
  • 2
  • 8
0
votes
1 answer

How can flowable customize and integrate its own permission system?

My application now has its own set of permission system. It is implemented based on user groups and users as well as roles. Now I want to integrate flowable. I don't want to have two sets of permissions. I wonder if you have an integrated scheme.
0
votes
1 answer

Keycloak Integration with Flowable

I have an app that has Flowable Open Source as a module. To use my roles and users in keycloak, flowable IDM is integrated with the keycloak with this config. .... flowable: common: app: idm-admin: user: password:…
glsavvick
  • 23
  • 4
0
votes
1 answer

Flowable correlation catch event happens before data is persisted

As far as I am aware of, data is persisted in Flowable when it reaches a waiting state. In our process we have a delegate which are starting a calculation and logging an ID for tracking purposes, and waits for a JMS message to restart the flow, like…
0
votes
1 answer

Retry failures for triggerable java service tasks

I’m not sure how to handle retries when it comes to handling failures for triggerable service tasks. Let’s take a simple BPMN where it follows startEvent → serviceTask (async = true and triggerable = true) → endEvent serviceTask (our custom…