Drools is a business rule management system (BRMS) with a forward chaining inference based rules engine, more correctly known as a production rule system, using an enhanced implementation of the Rete algorithm. Drools is hosted at JBoss.
1
vote
0answers
6 views
How to prevent reevaluating other rules on using update statement in Drools?
On using Update() statement in Drools, can we prevent the other rules to be reevaluated again ??
0
votes
0answers
12 views
Drools rules run completely once then only run partially
I'm running Drools 6.0.0.Beta2 on Tomcat 7. I keep running into a problem where all my rules execute fine once on the initial payload, and only the first rule executes on subsequent payloads, even if ...
0
votes
1answer
15 views
Drools Guvnor Tomcat 7 validateJarFile - jar not loaded
Using drools-guvnor (5.5.0)
When starting Tomcat the catalina.yyyy-MM-dd.log file shows this warning.
INFO: ...
0
votes
1answer
18 views
Drools - Fire multiple rules from multiple DRL files with different facts
Drools - How can I fire multiple rules from multiple DRL files with different facts?
I'm new to Drools. I have multiple facts, each associated with different DRL files. How do I fire all the rules ...
0
votes
0answers
15 views
Assigning a Rule to More than one RuleGroup
I am using drools5.5.0 for defining the rules. In that., I need to assign a rule (say RULE_ONE) to more than one RuleGroups. I need to execute that rule while firing two rule groups. Is it possible to ...
0
votes
1answer
23 views
Dynamic loading of rules in DROOLS
I am new to drools. I just want to understand how to dynamically update rules at run time.
Considering Drools - Ability to define rules at runtime ?
I wrote a code:
while(true){
session = ...
-1
votes
3answers
54 views
Creating a DateTime from two other dates
Basically I want to see if someones birthday is within 3 months of todays date. I am going to use Days to do this and just say "90" days.
My thoughts are as follows:
I will set a new datetime as ...
0
votes
1answer
16 views
Nullpointer exception in CompositePlanningValueRangeDescriptor.extractValues
I'm facing a NPE when trying to solve my solution:
Exception in thread "main" java.lang.NullPointerException
at java.util.ArrayList.addAll(ArrayList.java:472)
at ...
0
votes
1answer
29 views
Any Drools example for update listener
With reference to this Drools java update
I found that updatelisteners exists which can be used to fire rules when any facts(objects) are updated via java code, but couldn't find any example for it
...
0
votes
0answers
21 views
In Drools, while using XLS, could variables be checked for multiple values in one go?
I have a java component using Drools as a rule engine that is picking up rules from an XLS.
The actual condition is (take it with a pinch of salt, I am generalizing quite a bit here)
if value1 is ...
0
votes
1answer
25 views
Is debugging possible in drools 5.1.1?
I was working with drools 5.5.0.Final release and was able to debug the .drl file perfectly fine, but on switching to drools 5.1.1, I am not able to debug. Tried setting up the drools 5.1.1 runtime ...
1
vote
1answer
67 views
Can't build Drools examples from 'Drools JBoss Rules 5.0 Developer's Guide' using maven, unable to download artifact
I have some strange trouble while I'm trying to build examples from "Drools JBoss Rules 5.0 Developer's Guide". I try to run this examples doing step by step instruction from readme file(similar ...
0
votes
1answer
68 views
in drools is it possible to apply rules on a java list passed to a drl file without putting this list in the working memory?
I have recently started working with Drools and while writing a drl file I am facing this issue. I am creating a list of "Person" class objects and passing this list to a .drl file. Now I want to ...
0
votes
0answers
23 views
Using the 'from' KEYWORD in Drools DSL
I am using Drools DSL to map some natural language to actual MVEL code.I have a problem though, I have a scenario where I need to use the 'from' keyword in the when clause.
Here is a snapshot of my ...
0
votes
1answer
21 views
How to get logically inserted fact or insrt fact in code in Drools guvnor
My guvnor rule is like :
Rule "aa"
dialect "mvel"
when
Fund( amount> 10000 )
then
Alert fact0 = new Alert();
fact0.setSummary( "hi" );
insert( fact0 );
end
and using ...
0
votes
1answer
55 views
Joda-Time compareTo NoSuchMethod
I'm using joda-time to keep track of several different types of dates (DateTime and DateMidnight) in a Drools file. As part of the when condition, I get the date of an object and then compare the ...
0
votes
1answer
38 views
JBPM 5 - Process Instance Variable Change Command
How to set/modify the process instance variables of a running process-instance in JBPM ?
Is there any pre-defined command class to set the process-instance-variables ?
I can see some commands like ...
0
votes
1answer
37 views
Drools java update
I am new to drool, please help me understand if I update the object after I call fire all rules, will it fire the rules as it does in the drools file?
like
rule "Hello World"
no-loop true
when
...
0
votes
1answer
30 views
Exception importing Drools/Guvnor repository exported file
Im trying to import rules and assets into a new drool/guvnor installation, but I am getting the following error:
I'm using a RedHat JBoss version 5.3.1.BRMS and I'm importing this way: ...
0
votes
0answers
31 views
Drools java.lang.ExceptionInInitializerError
I am using drools in my product, it is giving Exception initializer error. I couldn't identify the problem. The error logs are:
Exception in thread "DefaultQuartzScheduler_Worker-8" ...
0
votes
1answer
36 views
claim processing with policy variants using drools and jbpm?
I'm trying to build an claim processing system. There will be multiple variations of insurance policies (based on the negotiations with individual clients). Aim is to keep a base policies per provider ...
0
votes
0answers
44 views
Drools Rule validation result for each rule in case of agenda filter
I am using Drools for rule checking in my application.
I have four rules.
Say:
1) RG1_CheckOnA (Sets A = 5)
2) RG1_CheckOnB (Sets A = 6)
3) RG2_CheckOnAA (Sets B = 7)
4) RG2_CheckOnBB (Sets B = 8)
...
0
votes
0answers
14 views
Deploying drools-core 5.5.0 on FUSE ES 4.4.1
All
I am trying to deploy drools-core version 5.5.0.Final on FUSE (apache-servicemix-4.4.1-fuse-00-08).
drools-core (5.5.0 Final) requires other jars
com.google.protobuf/protobuf-java/2.5.0
...
0
votes
0answers
12 views
Including timer in drools decision tables
Is there any approach to include timer inside drools deciscion tables to schedule rule firing .
timer ( int: 30s ).
0
votes
1answer
17 views
Unable to create .dslr in Eclipse
I am new to Drools Rule Engine.
I am using Eclipse Helios and Drools 5.1 runtime.
I am able to load .drl file and able to run the simple rule application. Also , I am able to create .dsl ...
0
votes
1answer
73 views
Accessing drool rules details in Java code
I am novice in Drools rule engine.
I have created a single rule file i.e. .drl file. In that file, I have defined three rules and assigned priority to each using salience attribute.
Once the rules ...
0
votes
2answers
28 views
NullPointerException at org.drools.reteoo.ReteooBuilder.removeRule(ReteooBuilder.java:252)
I am using drools expert 5.4.0.Final, for a scenario where I am dynamically creating rule DRL, adding it to knowledgebase and firing the rule.
I am trying to disable/enable rule at a later point ...
0
votes
1answer
95 views
JBPM 5 - RESOURCE_LOCAL Persistence
Environment:
jbpm v5.4.0.Final ,
drools 5.5.0.Final ,
spring v3.0.6.RELEASE ,
Oracle,
Hibernate EM v4.0.0.Final ,
JPA v2
I have configured my web-application to use JBPM with RESOURCE_LOCAL ...
0
votes
0answers
55 views
drools arraylist collect access object
How do I access access a getter from an item ArrayList which is the result of collect in Drools 5.5?
In code similar to the sample below, I get The method getStatus() is undefined for the type ...
0
votes
0answers
26 views
Drools, disable logical retraction until rules are fired
How can I prevent the logical retraction until rules are fired? If a fact is inserted that invalidates the rule, then the corresponding logical insertions are retracted immediately. I want to postpone ...
0
votes
0answers
30 views
Create a drool to list all rules within other drools
basically i was wondering if there is a way to run something and it would go into every drools file in the directory's under it (in a folder with say 50 folders in there, would go into each folder.) ...
0
votes
0answers
34 views
drools queries: strange dependency
I'm somewhat new to Drools, and experienced this strange behavior during writing a query.
To start with, the Hotel class here is a subclass of PlaceImpl, which implements the interface Place. ...
0
votes
1answer
51 views
Getting a rule name in the 'when' clause:Drools
How do I get the rulename in the when/Lhs clause of Drools?
0
votes
1answer
46 views
Liferay Drools Sample Error
I'm trying to test the sample drool portlet from git-hub and start learning how to work with a Drools portlet integrated in Liferay.
I m working with Liferay 6.1, Tomcat 7.
My code has an error, ...
0
votes
1answer
40 views
Why JBOSS drools plugin is not working in Helios?
I have installed drools plugin in Helios for linux machine.After installing a prompt displayed as,
An error has occurred.see error log for more details,
org/eclipse/ui/part/FileEditorInput
I have ...
0
votes
1answer
50 views
Drools query “wildcard”
Is it possible to insert facts into a Drools working memory (e.g. constraints on the query) that act as a wildcard?
For example, imagine I have the following rules:
rule "meal_exceptions_1"
...
0
votes
1answer
30 views
Use single logger instance for all rules in drl file
I am performing logging from drl file using log4j. I create a separate instance of logger for each rule in drl file. Is there a way to create a single instance of logger that can be used in all the ...
0
votes
1answer
33 views
How do I Use the Drools debugWorkingMemorylistener?
The following line of code straight from the documentation
ksession.addEventListener(new DebugWorkingMemoryEventListener());
prompts the following error in eclipse
The method ...
0
votes
1answer
133 views
Newly Created & Loaded StatefulKnowledgeSession - JBPM 5
*strong text*What could be the problem if the task-completed event is not getting dispatched to the StatefulKnowledgeSession ?
For a new process-instance, I do
create a new session
register ...
0
votes
0answers
18 views
Eclipse Drools Plugin - Change default colors in the edtior?
Is there any way to change the colors in the DRL editor for the Drools plugin in eclipse?
The red is hard for me to see and I can't find a way to change it. It seems to inherit the background colors ...
0
votes
1answer
27 views
Issue with Drools Fusion “during” temporal operator
I've started to work with Drools Fusion and faced strange issue with during temporal operator. For a reason I cannot make it too work though for example after operator is working fine.
Here is ...
0
votes
0answers
31 views
Drools Dynamic variable name Generation
Afternoon Fellow Droolers,
I have a question. I am currently using drools for the project I am working on.I am not an expert by any stretch of imagination. I am using a DRL template file, which is ...
0
votes
0answers
21 views
Writing CEP rules using descion tables in drools 5.1
I need to provide decision tables to write CEP rules.I have a sample rule as below.
rule "More than 2 sale suceess in 5 events"
when
$n:Number() from accumulate (
...
0
votes
3answers
80 views
Debugging Drools inside an EJB in eclipse
I am currently debugging a web application which uses a drools ruleset inside an EJB to process business rules. It's deployed inside a JBoss server. I've configured eclipse to run the server so I ...
1
vote
1answer
117 views
Jboss Drools in a Web Application
We have huge web application and we are adding new functionality to it.
As it's web application, it's using Struts2, Spring frameworks.
I have googled a lot, couldn't find any tutorial of Jboss ...
0
votes
1answer
40 views
Should I use Drools to handle this complex logic
Current application serves as a audiencing tool where in the documents and products that needs to be visible to the users in the portal is checked against certain rules in runtime based on the user ...
0
votes
0answers
31 views
installing drools planner in eclipse: The constructor IntConstraintOccurrence(String, Object[]) is ambiguous
I have been trying to install Drools planner. I downloaded it, installed the plug-in, created a run-time, and created a new project. However, I run into build errors in the rules file: The ...
0
votes
1answer
106 views
Why doesn't rule 1 consequence effect behavior of rule 2?
As an exercise in teaching myself drools I'm working on rules for bidding in the bridge card game. The rules work independently of each other (enforced by use of drools.halt() in the rules) but when ...
0
votes
0answers
55 views
Caching in JBoss drools rule engine [closed]
I am very much new to Drools, a rule engine. In my project, some .drl files are there written by someone else.
Today, i am told by my lead to cache the compiled rule files using EHCache. Can ...
0
votes
1answer
48 views
JBPM 5 ProcessInstanceInfo && EventTypes
What is the use of EventTypes table in JBPM 5?
Does it store the name of the possible signal's the process-instance can accept ?
Or does it store the events that has occured on the process-instance ...
