Questions tagged [kogito]

Kogito is the cloud-native business automation for building intelligent applications, backed by battle-tested capabilities.

More details can be found at: https://kogito.kie.org/

This tag can be used whenever you need to:

If you have any questions or issues about:

  • How to use Kogito;
  • When you can use Kogito
  • Kogito on top of Quarkus
  • Kogito on top of Springboot
  • Kogito apps Native execution
  • Kogito Operator
  • Kogito CLI
  • Kogito containerized on Kubernetes
  • Kogito containerized on Openshift
  • Kogito running with JVM
  • Kogito running with GraalVM
  • Quickstarts and hello worlds
  • Event-driven architecture with Kafka
  • Persistence
  • Caching
  • Monitoring Kogito with Grafana and Prometheus
  • Process and rules design with Kogito
  • BMPM Editor VSCode Plugin
  • How does Kogito relate to jBPM and Drools
85 questions
0
votes
1 answer

BPMN 2.0, kogito, triggering signal or message from another process

I am using kogito (kogito-quarkus(1.26.0)) with quarkus(2.9.2), maven (4.0.0) and java 11. I want to communicate with an ongoing process, probably waiting for an event (message). See the image below. Once I start this process, it waits on the event…
Mert Uygur
  • 55
  • 1
  • 5
0
votes
1 answer

Quarkus remote dev mode mutable jar startup failed

I am trying to run quarkus in remote dev mode and when I try to deploy (AKS) getting the error Paths collection expected to contain a single path but contains 0 I am using both camel and kogito capabilities in my project. The code works fine in my…
Chennai Cheetah
  • 355
  • 1
  • 11
0
votes
1 answer

Kogito Boundary Error and Catch All Subprocess together

I have a node within my kogito workflow with a boundary error for a specific type of exception (e.g. BusinessException), and a separate catch all subprocess that should deal with all other exception types that are thrown. (currently configured to…
cyb3rc0re
  • 1
  • 1
0
votes
1 answer

How do I upgrade the MongoDB driver in a Kogito Quarkus project?

I'm new to Kogito and Quarkus, so help me a little bit here. Our application has been recently affected by this bug: https://jira.mongodb.org/browse/JAVA-4018 Now I want to upgrade the Mongo DB driver version to use the version with the fix but…
granyatee
  • 16
  • 4
0
votes
1 answer

Custom tasks in kogito vscode bpmn editor

Is it possible to show custom tasks from a wid file in the palette of tasks in the VSCode BPMN2 editor? If not, is there another way to add custom tasks to a business process?
0
votes
1 answer

jbpm - cannot handle exceptions in subprocess as it immediately throws and exits

I am using jbpm on quarkus with dependency kogito-quarkus. I have a flow consists of ten steps and three of them may throw an exception called ApplicationException. So I added these three steps compensations so when there is an exception thrown, I…
Mert Uygur
  • 55
  • 1
  • 5
0
votes
0 answers

Drools/ Kogito Dynamic runtime flow/ process

I'm new to drools (I can consider Kogito as well) we have a requirements where the rules with orders are stored in a decision table and it should be executed based on the order given by the users the rules order could change at anytime. Please keep…
Kyle
  • 330
  • 1
  • 4
  • 13
0
votes
0 answers

Multiple ruleunits in Kogito

I need to manage multiple rulesets as follows: Ruleset1: rule1 rule2 rule3 Ruleset2: rule4 rule5 rule6 Each ruleset is in it's own DRL file for ease of management. At any moment, I want to execute one of these rulesets. I came across the concept…
sriniprash
  • 121
  • 1
  • 7
0
votes
1 answer

Clone and edit kie tools to custom BPMN/DMN editor

I am new in developing BPMN/DMN editors. I have come across the kie-tools git repository which has editors base code as they specify. But I couldn't find any documentation which I could follow to start editing the code and achieve my changes. It…
codeforHarman
  • 115
  • 1
  • 10
0
votes
2 answers

Making Rest calls inside a Serverless-workflow's foreach state running on Kogito

I'm trying to loop over an array of data and calling A Rest endpoint for each item in this array, using a serverless-workflow script running on Kogito & Quarkus. I've modified the following project getting-started-with-serverless-workflow to include…
Cyril C.
  • 112
  • 8
0
votes
1 answer

How to update multiple Kogito process variables with results from service task

Please advise how to update many Kogito process variables with outputs from a service task? I mapped service task's outputs to process variables on "Data Outputs and Assignments" screen of BPMN editor and implemented service task handler to return…
0
votes
1 answer

Kogito Debugging DMN Test Scenarios

Using Kogito I'm trying to create a test scenario for a DMN file that returns an array. I created a simple DMN that would return an array of objects regardless of the input for the sake of testing. But tests are failing if I add a value to the…
josesuero
  • 3,260
  • 2
  • 13
  • 19
0
votes
0 answers

Kogito with Quarkus Configure an API Token

I have a api generated out of a DMN with Kogito and Quarkus. This works good. I find a lot of examples on how to use JWT tokens or basic auth for security (apiKey). But I'm missing how to do a API Token, perhaps as a header that allows me to do…
josesuero
  • 3,260
  • 2
  • 13
  • 19
0
votes
2 answers

User Info from JWT Kogito

I understand the mechanism of OIDC in Kogito with the help of process-usertasks-with-security-oidc-quarkus example. However, I have a question about user information. In the given example, the approved field is filled by a Query string. Is there any…
0
votes
1 answer

Kogito Apps with distributed transaction with data index

We are using kogito runtime and data index. Need to have distributed transaction management for the process. What we see is domain object is persisted and process instance is not created if there is issue with Kafka. Similarly process instance gets…