Questions tagged [redhat-bpm]

For development issues encountered while using Red Hat JBoss BPM Suite

Red Hat JBoss BPM Suite is a platform that combines business rules and process management (BPM), and complex event processing.

Click here for free development subscription which allows you to download Red Hat JBoss BPM Suite for development use https://developers.redhat.com/downloads/

45 questions
0
votes
0 answers

Drools - KIEServer inserted Object in then not showing in Reponse

I have simple DRL rule package drl; //generated from Decision Table import com.Location; import com.LocationApproval; // rule values at C12, header at C7 rule "Basic_12" salience 65535 when location: Location(city == "A") then …
user1428716
  • 2,078
  • 2
  • 18
  • 37
0
votes
0 answers

JBPM Transaction timeout - completed with multiple threads in progress

While I am trying to start a process using KIE Server Client API I am getting this error. What am I doing: I need to start few processes based on user selection. When I receive user selection, in a parent process WorkitemHandler I take the process…
Gana
  • 482
  • 3
  • 11
  • 32
0
votes
1 answer

How to compare dmn xml files and show the diff of decision tables

I would like to know is there any tool is available to compare dmn xml files and show the diff of decision tables. I want to implement diff viewer for dmn xml files to show the diff of decision table using javascript. It would be greatly helpful if…
netajik
  • 196
  • 1
  • 4
  • 15
0
votes
1 answer

Handling null when returning through Business Knowledge model in DMN

I am trying to make some Business rules using DMN on kie Server. There I have structure data object and its list which is my input. I am using rule to validate my structure list and get only those who passes my condition. I am using…
0
votes
1 answer

JBPM_7.XX: How to change role name "admin" to other name?

Currently, I am integrating JBPM with LDAP with following guide: https://www.youtube.com/watch?v=0UpT92-GIxc. I have done successfully. But, Our LDAP server already have role "admin" and I cannot add this role to my OU. So, How can i change…
0
votes
1 answer

How to connect datasource to data input assignment's source in rhpam?

I have created datasource and a table which contains id and the email id of the user. I created a Email Task and I wanted that the "To" field as shown here should come from the database for the specific user id. How am I going to perform this? Any…
0
votes
0 answers

How can I add List of objects in a conditional state in guided decision table?

I am working on a Guided decision table in JBPM. I have a requirement like I have 1 college object in that I have a Student and a Fee object. I want to apply a condition on multiple Student objects by passing a JSON containing College object and…
0
votes
1 answer

Transform Custom Task in JBPM

I am using Business Central (JBPM) and I am trying to use the Custom Task Transform that transforms a Java input Object to an output Object. As you see, I have installed the work task and the corresponding handler is in place. In the…
Themis Pyrgiotis
  • 876
  • 5
  • 15
0
votes
1 answer

Java.lang.ClassNotFoundException: org.kie.api.KieServices$Factory

I have this exception when I try to start spring boot Exception in threat java.lang.ClassNotFoundException: org.kie.api.KieServices$Factory at java.net.URLClassLoader.findClass This is how my pom looks like. I think i'm missing some dependency in…
mrobi
  • 17
  • 10
0
votes
2 answers

Embedded JBPM 6.4 TO RHPAM 7.4 Rest api migration

Am in a project that requires the migration of jbpm 6.4 to rhpam 7.5 version. In the current version we use embedded jbpm as in everything is added as dependency and the war file is deployed into the server. We are planning to migrate to rhpam to…
0
votes
0 answers

Storing parameters for rules

I am using RdeHat Decision Maker 7.1 (Drools) to create a rule for assigning a case to a department. The rule itself is quite simple, however it requires quite a lot of parameters (~12) like the agent type, working area, case type, customer…
Alon
  • 1
0
votes
2 answers

Unable to lookup JNDI name [jdbc/jbpm-ds]

I am trying to develop jBPM spring boot application but getting Unable to lookup JNDI name [jdbc/jbpm-ds] error. To achieve so, I have used jbpm-7.36.0.Final, Spring-Boot-2.2.6 and jbpm-spring-boot 7.36.0 Final along with spring boot Bitronix api.…
0
votes
1 answer

Error calling container "xxxxxx": Error unmarshalling input on Redhat Business Central

I'm new in Redhat Business Central and exploring. I have created the application and deployed it successfully. I have a problem when I send a POST to the server. I'm getting an error "Error unmarshalling input". I have attached the screen shoot of…
mrobi
  • 17
  • 10
0
votes
1 answer

Red Hat Process Automation Manager Database Sizing?

How would one go about sizing a data for Red Hat Process Automation Manager (jBPM)? All to documents I have read state you can hook it up to a database (mySQL mostly) but don't give any inclination to default sizing anywhere.
Ryan O'Hara
  • 311
  • 1
  • 10
0
votes
1 answer

Jbpm human task automation or bulk action

I have a requirement where in our processes create a human task for the support team to re-trigger failed process. They do it by passing a parameter "Y" after claiming the task and submitting it. My need is to automate this in a way any tasks that…