I am using the kie-server docker image and sending curl commands to perform necessary actions.
In my settings.xml I am defining a remote repo as so:
kie
…
"I'm setting up Kie Workbench 7.5 and Kie Server 7.5 both into tomcat 8.
But "Remote Servers" is showing blank list.
For installation reference I used http://blog.athico.com/2015/10/installing-kie-server-and-workbench-on.html this blog.
Once I hit…
I am new to Drools and Kie Workbench. I have Kie workbench running on tomcat Server.
I am looking for Clustering Kie Workbench, because the same project will be running on three different tomcat server (each server will have respective Workbench)…
Unable to add rules at runtime through ResourceFactory.newURLResource()
Also , KnowledgeBase is deprecated or cannot be resolved
I have tried all the snippets from the documentation
public class RuleRunner {
public RuleRunner() {
}
public void…
I am working with Drools in Eclipse, and I have a rule that needs to be triggered in each one of the agendas that I've defined (it is a very important rule).
First, I tried not to set an agenda for that rule, but it only got executed at the end of…
I AM USING 6.2.0 FINAL .I have created the droolengine as a standalone application .It is working fine as expected and all rules are being fired which are present in the DRL file. But same application was integrated with my Product, but here rules…
I have created one process-sampleFlow.bpmn2 ( a sample rule added in the business task ) , and the same process is defined in kModule.xml. Now in a simple pojo class from main method with kieContainer it is able to initiate the process and triggers…
I am trying to use drools in spark job submitted to a cluster. THe job will start by getting the drools jar from a drools server then initialize the base and sessions.
My code work when executed in Spark but when submitting to spark cluster a NPE…
I have two data objects.
1.) Customer ( cust_id, cust_type, first_name, middle_name )
2.) accnt_prtcpnt ( cust_id, accnt_id, ap_first_name ).
I need to write a Drools rule on ap_first_name field in the accnt_prtcpnt pbject which says that if the…
We are trying to get a reproducer but this issue comes up intermittently in our systems.We are on drools 7.6.0 version. We see this crash when our service tries to update rules at runtime under heavy load. After that all requests start to fail .…
Here is my rule
rule "Multiple bookings via same mobile"
when
(stayDateGroupingIteration : StayDateGroupingDto($stayGroupedBookings : stayGroupedBookings)) and (QueryTypeDto( queryType == "multiple" ))
$travellerCount :Number()…
I'm running Drools 7.7.0.final KIE server on tomcat. I am seeing this behavior when launching a container via RESTful call to the KIE server....
The container is never created, and the RESTful call hangs indefinitely. When I query the server I see…
I have a simple that checks whether a user id is present in db
rule "check if user is already present"
agenda-group "dbcheck"
when
$blackListUserDto : BlackListUserDto( )
eval(…
I want to integrate drool Kie UI to edit my rules from UI side.
I have already many rules in my web project.. please let me know how i can open those in UI to edit and again after build and deploy how it will update in my web application repository.
I am creating the object of stock and inserting stock values as below
Customer 1 has 2 stocks stocks4 and stocks5
customer2 has 1 stocks arrayListStocks1
Here I am trying to make sum of all Stocks for given session
Stocks stocks1=new…