Questions tagged [jbpm]

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

About

jBPM is a flexible Business Process Management (BPM) Suite. It is an open-source workflow engine written in Java that can execute business processes described in BPMN 2.0.
It makes the bridge between business analysts and developers. Traditional BPM engines have a focus that is limited to non-technical people only. jBPM has a dual focus: it offers process management features in a way that both business users and developers like it.

Links

1453 questions
3
votes
2 answers

Merging two versions of bpmn (xml) files

We develop processes in jBPM Business Central. And we create two branches for two developers, and every developer make some changes. After that, I try to merge changes, but get a lot of conflicts like this: <<<<<<< HEAD …
Alex T
  • 2,067
  • 4
  • 20
  • 27
3
votes
0 answers

Unable to access Business Central/Decision Central even on a fresh installation of the product and displays message "Please wait Loading Application"

I have installed the current version of jbpm. After the installation, start and successful login Business central waits for forever and the page does not appear. I have found the problem reported…
Elmar N.
  • 31
  • 1
3
votes
1 answer

How to Integrate Kie-workbench with springboot?

I am having Kie workbench and I am having seperate springboot application. Now i want to use certain rules created in that workbench from my local spring boot application.... What are the steps to be followed to interact with KIE Workbench and what…
vishnu murali
  • 41
  • 2
  • 12
3
votes
2 answers

Spring boot integration with JBPM 7.23.0

I am new to the jBPM. I want to use the jBPM 7.23.0 with the Spring boot. As per my understanding there are two ways to integrate it. JBPM as a service jBPM project embedded in Spring boot application I am trying to understand how to embed jBPM…
Aniket
  • 37
  • 2
  • 5
3
votes
1 answer

How to set a BPMN process variable from a user task outcome?

I have a simple approval BPMN workflow process. I want to assign the outcome (data output?) from a user task ("Approve") to a process variable that is then used in the exclusive gateway following that user task. The user task outcome is set within…
3
votes
1 answer

Unable to import project from remote git/stash repository to Business-Central

I am running jbpm 7.16 on jboss eap7.1. I am trying to import the projects from my stash/git repository in business central but getting below error -" There are no projects available to import. Check the repository URL and authentication options."…
3
votes
1 answer

How to apply the same naming strategy to @Index columnList as for column?

Since one of the newer releases of the JBPM was added an indexes internal classes: @Entity @Table(name="Attachment", indexes = {@Index(name = "IDX_Attachment_Id", columnList="attachedBy_id"), @Index(name =…
3
votes
0 answers

drools development and production separation in a good manner

What I am trying to do is to have seperated development and production environment in drools infrastructure in which I can test my authored rules before it goes to production. What I did is followed. First, I ran a docker container from the…
Sinapse
  • 786
  • 1
  • 6
  • 23
3
votes
1 answer

JBPM - Get the list of all the tasks

I'm trying to fetch the list of all the tasks within the JBPM database. I'm using the following code : List liste = taskService.createTaskQuery().list(); But it gives me a list of the first task of each workflow... How could I get the other…
MartinMoizard
  • 6,600
  • 12
  • 45
  • 75
3
votes
1 answer

jBPM custom authorization

I am trying to use in jBPM users from existing ASP .NET MVC Web Site. As I understand from docs and this forum topics (first, second) best solution would be implementing of UserGroupInfoProducer that will call external service. But due lacking of…
Andrey Tretyak
  • 3,043
  • 2
  • 20
  • 33
3
votes
0 answers

Can we have have two different jar versions of hibernate running in same application

Can we have have two different jar versions of hibernate running in same application. We have our application which uses hibernate3 and we are also using JBPM 5 in our application which is also using hibernate3. However, since now we are in process…
noor
  • 31
  • 1
3
votes
1 answer

BPMN how to model repetable tasks

I'm trying to model a task that can be executed more that one time. Is the only way to do this the one on the figure below? Is there in a BPMN task an attribute that is used to specify the repeatability of a task??
Gaetano Piazzolla
  • 1,388
  • 1
  • 16
  • 31
3
votes
0 answers

jBPM access Business Rule Task Input and Output variables inside Rule

I have Business Rule Task in my Business Process: SequenceFlow_7
3
votes
1 answer

jBPM 6.2.0 send recurring Task reminder after 1 day time interval if the task is not complete

I am new to jBPM. I am working on jBPM version 6.2.0. I want to perform following tasks. Send reminder email to user / group. Remind the user again after 1 business day if the task is not yet complete. Continue to send reminder everyday untill…
3
votes
2 answers

Throwing exceptions from JBPM WorkItemHandlers?

I'm a little confused about the subject of throwing exceptions from JBPM work item handlers and handling the exception elsewhere in the business process. We're using JBPM 6.0.3 to run in Jboss EAP 6.1. The JBPM User Guide implies that you should…
Kenster
  • 23,465
  • 21
  • 80
  • 106