RE: [rules-users] Download Drools 4.0.7

2009-05-20 Thread Carlsen, Len
You can also get them from the Maven repository here: http://repository.jboss.org/maven2/org/drools/ Len -Original Message- From: rules-users-boun...@lists.jboss.org [mailto:rules-users-boun...@lists.jboss.org] On Behalf Of Ingomar Otter Sent: Wednesday, May 20, 2009 10:33 AM To: Rules

[rules-users] JSR-94 Throws Exception for KnowledgePackage

2009-03-18 Thread Carlsen, Len
Hi, I am upgrading our application from Drools 4.0.7 to 5.0.0.SNAPSHOT (using JDK 1.6) I have noticed that RuleServiceProvider.createRuleExecutionSet requires a org.drools.rule.Package instead of a KnowledgePackage. If I use a KnowledgePackage the following exception is thrown:

RE: [rules-users] RuleFlow Spanning Multiple Packages

2008-07-21 Thread Carlsen, Len
Thanks great - Thanks Len Mark Proctor wrote: A rulelfow must live in a namespace, however the ruleflow groups are global - so a ruleflow can co-ordinate ruleflow groups across packages. Mark Carlsen, Len wrote: Hi All, Is it possible to define a rule flow that spans multiple

[rules-users] RuleFlow Spanning Multiple Packages

2008-07-17 Thread Carlsen, Len
Hi All, Is it possible to define a rule flow that spans multiple packages (rulesets). Currently we have the 3 packages (and we are planning on dividing them into more sub-packages): Package1: 10,000 rules Package2: 5000 rules Package3: 1000 rules And we would like to create one rule

[rules-users] Drools infixOr with a from Collection Not Working???

2008-06-25 Thread Carlsen, Len
Hi, I have a rule with an infixOr and an infixAnd that test for objects in a collection which doesn't execute even though it should. # This rule will not execute even though it should rule FAIL_AorBandC when test : TestClass( string==TEST ) (

[rules-users] Searching for archived packages in the repository

2008-03-27 Thread Carlsen, Len
Hi, I am trying to get a list of all archived packages from the Drools repository but I can't seem to get packages that have been archived. Below is the query I am using to get a list of archived packages: RulesRepository repo = createRepository(); PackageItem item =

[rules-users] boolean == String?

2008-02-06 Thread Carlsen, Len
Hi, I have an expression where I am comparing a Boolean to a String which I would expect to fail but the expression always returns true. Is this expected behaviour? I modified the Drools HelloWorldExample and changed the status from an int to a boolean. import

RE: [rules-users] boolean == String?

2008-02-06 Thread Carlsen, Len
I forgot to say that I am using Drools 4.0.4 Len From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carlsen, Len Sent: Wednesday, February 06, 2008 12:55 PM To: Rules Users List Subject: [rules-users] boolean == String? Hi, I have

[rules-users] Drools BRMS for Different UI Framework

2008-01-30 Thread Carlsen, Len
Hello, I have been looking at the Drools brms package (org.drools.brms) and have noticed that it is built specifically for GWT. Are there any plans to move GWT to a layer further up so the brms can be used by different UI toolkits/frameworks instead of using the drools repository

RE: [rules-users] Re: Drools and BRMS (60,000+ rules)

2007-12-03 Thread Carlsen, Len
, where it detects changes and then builds int he background). Regarding your profiling so far - nothing seems that surprising - were there any areas that you think needed particular attention? Michael. On Nov 25, 2007 6:43 AM, Carlsen, Len [EMAIL PROTECTED] wrote: We would probably use

RE: [rules-users] Re: Drools and BRMS (60,000+ rules)

2007-11-24 Thread Carlsen, Len
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Proctor Sent: Saturday, November 24, 2007 1:02 AM To: Rules Users List Subject: Re: [rules-users] Re: Drools and BRMS (60,000+ rules) Carlsen, Len wrote: This is very cool and is exactly what we will need for our new open

RE: [rules-users] Re: Drools and BRMS (60,000+ rules)

2007-11-23 Thread Carlsen, Len
(60,000+ rules) Mark Proctor wrote: Carlsen, Len wrote: Other issues are the performance of the Drools Solver and having thousands of rules compiled, loaded and running. During registration we could have thousands of rules executing concurrently. The rules engine and the BRMS would

RE: [rules-users] Drools and BRMS (60,000+ rules)

2007-11-20 Thread Carlsen, Len
] Drools and BRMS (60,000+ rules) Carlsen, Len wrote: Hello, I am wondering if anyone has any experience in managing very large rule sets and facts and could share their experiences in the design and management of this. We are embarking on a new Student Information System project here at UBC

RE: [rules-users] Drools and BRMS (60,000+ rules)

2007-11-20 Thread Carlsen, Len
, November 20, 2007 3:24 PM To: Rules Users List Subject: Re: [rules-users] Drools and BRMS (60,000+ rules) Carlsen, Len wrote: We did some simple micro performance/scalability testing a while back on Drools 4.0.1 where we came to a similar conclusion. We may even publish our test results

RE: [rules-users] Exception error when using RuleAgent

2007-11-16 Thread Carlsen, Len
Hi Rod, I had a similar error and I solved it by upgrading to Drools 4.0.3 on the BRMS and for the RuleAgent. See Jira: http://jira.jboss.com/jira/browse/JBRULES-1245 Hope this helps, Len -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL

RE: [rules-users] mvel regex not working???

2007-11-15 Thread Carlsen, Len
change your regexp to use single '\' instead of double, it should work fine. []s Edson 2007/11/14, Carlsen, Len [EMAIL PROTECTED]: Hi, I have an email validation regex where the mvel matches doesn't seem to work. I have created 2 rules where test1 uses the Java String matches

[rules-users] mvel regex not working???

2007-11-14 Thread Carlsen, Len
Hi, I have an email validation regex where the mvel matches doesn't seem to work. I have created 2 rules where test1 uses the Java String matches and test2 uses the mvel matches. Test1 works but test2 doesn't. I am using Drools 4.0.3 and JDK 1.6.0_02. rule Test1 when // This

[rules-users] Drools and BRMS (60,000+ rules)

2007-11-08 Thread Carlsen, Len
Hello, I am wondering if anyone has any experience in managing very large rule sets and facts and could share their experiences in the design and management of this. We are embarking on a new Student Information System project here at UBC in conjunction with several other American

RE: [rules-users] BRMS Problem on Tomcat

2007-09-21 Thread Carlsen, Len
I got the BRMS working on Tomcat 6.0.13 but I still can't get Drools compiler to work under Tomcat 6.0.13/Axis2 1.3. Some sort of Classloader issue under Axis2 1.3. Drools BRMS on Tomcat 6 1. Copy the following jars from the JBoss Web server lib directory into the Tomcat lib:

[rules-users] Tomcat 6 -Axis2 1.3

2007-09-17 Thread Carlsen, Len
Hi, I am trying to deploy a web service that uses Drools 4.0.1 to Tomcat 6 and Axis2 1.3. Does anybody know how to do this on Tomcat 6/Axis2. I have tried to place all the drools' jars (and its dependencies) in the axis2 lib directory but I keep getting java.lang.NoClassDefFoundError for all