Oh Great - this works now
Thank you
--
View this message in context:
http://drools.46999.n3.nabble.com/Simple-Rule-Flow-tp2894351p2894605.html
Sent from the Drools: User forum mailing list archive at Nabble.com.
___
rules-users mailing list
rules-user
You are most likely starting the process, but not firing rules, for example:
ksession.startProcess( "myprocess" );
ksession.fireAllRules(); // you need this
Thanks.
Tihomir
On 5/3/11 9:59 AM, sdinoo wrote:
> I am new to drools
> All I want to do is create a simple rule flow with a rule task tha
I am new to drools
All I want to do is create a simple rule flow with a rule task that executes
a particular Rule-flow group
Here is what my rule looks like
rule "rule1" ruleflow-group "group1"
when
eval(true)
then
System.out.println("Bingo");
end
i