[rules-users] Drools features that can't be used from a JSR 94 compliant client application

2008-05-22 Thread Prem Kumar L
Hi All, Is there a set of features in drools that can't be used from a an application that uses the JSR 94 API to execute drools rules. For instance, can I use decision tables ? Can someone point me to any docs that talk in-depth about this issue ? Thanks Prem

RE: [rules-users] Nested Rules

2008-05-22 Thread Anstis, Michael (M.)
Erm, Rule Flow springs immediately to mind. Or you can use semaphore Facts yourself - but you're re-inventing the (Rule Flow) wheel. rule rule 1 when condition is true then insert(new SemaphoreFact()); end rule rule 2 when SemaphoreFact() Some

[rules-users] Nested Rules

2008-05-22 Thread Vishal Deshmukh
Hi I am using Drools 4.0.4 with Eclipse 3.2. I m much happy with the results. But now my application needs nested loops.. Can i write nested rules like rule rule 1 // if condition of rule 1 is true then only execute rule 2 other wise skip it when condition is

Re: [rules-users] Nested Rules

2008-05-22 Thread Christine
On Thu, May 22, 2008 11:30, Vishal Deshmukh wrote: Can i write nested rules like Sure. rule rule 1 when condition is true then set property in some object rule rule 2 when property in some object has been set then action However, if you

Re: Re:[rules-users] JUnit testing

2008-05-22 Thread Marcus Ilgner
Glad that I could actually contribute something back to this great project. I put together a patch for this issue in the JIRA at http://jira.jboss.org/jira/browse/JBRULES-1618 as promised. Best regards Marcus On Tue, May 20, 2008 at 2:34 AM, Mike Dean [EMAIL PROTECTED] wrote: Sorry to ask

Re: [rules-users] Activation number

2008-05-22 Thread Mark Proctor
Ming Fang wrote: Are activation numbers supposed to be unique? I am sometimes getting duplicated numbers. no they are not unique. The activation number is from the propagation context number. So basically says which working memory action caused the activiation(s). --Ming