[rules-users] Drools on android

2010-04-15 Thread Justin King
Hi All, I'm wondering if anyone has tried to use drools in a google android application, and if so what problems did you have? I'd also be interested to know if its even possible! Thanks! -- Regards, Justin King PhD Candidate Faculty of Information and Communication Technologies Swinburne

Re: [rules-users] Runtime addition of rules to a kbase

2009-09-14 Thread Justin King
will look into it. []s Edson 2009/9/9 Justin King justin.matthew.k...@gmail.com Hi, We have a project where we are attempting to add new rules to an existing knowledgebase (read from a .drl file). We add them by using strings using the following code: String rule = rule \GeneralClause-2

[rules-users] Runtime addition of rules to a kbase

2009-09-08 Thread Justin King
Hi, We have a project where we are attempting to add new rules to an existing knowledgebase (read from a .drl file). We add them by using strings using the following code: String rule = rule \GeneralClause-2\ + when + ObligationComplianceEvent(term == \term2\,

Re: [rules-users] not able to debug drools flow

2009-09-02 Thread Justin King
: https://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/trunk/target/ Kris Quoting Justin King justin.matthew.k...@gmail.com: I'm also using eclipse galileo, Java 1.5, and XP SP3 and I'm having the same problem 2009/8/24 Jakob Marovt jmar...@gmail.com Hi, I am

[rules-users] Fusion and the guided rule editor

2009-08-26 Thread Justin King
Hi everyone, I'm trying out the guided rule editor in the eclipse plug in but it does not seem to allow for the use of fusions temporal operators and event meta-data. Am I missing something here or is the guided editor a bit of a relic from version 4 that has not been updated? Cheers, Justin

Re: [rules-users] Adding rules at runtime

2009-08-26 Thread Justin King
Anyone at all? I still haven't found a way to do this. On Tue, Aug 25, 2009 at 11:03 AM, Justin King justin.matthew.k...@gmail.com wrote: Hi Everyone, I found an old example that shows how to add a rule at runtime: function void addRule(String pkgName, String rule, RuleBase ruleBase

Re: [rules-users] not able to debug drools flow

2009-08-26 Thread Justin King
I'm also using eclipse galileo, Java 1.5, and XP SP3 and I'm having the same problem 2009/8/24 Jakob Marovt jmar...@gmail.com Hi, I am using Eclipse 3.5.0, jdk 1.6.0_13-b03 and Drools 5.0 all on Windows XP Professional SP3. Jakob On Sat, Aug 22, 2009 at 11:47 PM, Kris Verlaenen

[rules-users] Adding rules at runtime

2009-08-24 Thread Justin King
Hi Everyone, I found an old example that shows how to add a rule at runtime: function void addRule(String pkgName, String rule, RuleBase ruleBase ) { PackageBuilder builder = new PackageBuilder(); builder.addPackgeFromDrl( new StringReader( rule ) ); ruleBase.addPackage (

Re: [rules-users] when condition on multiple facts of the same type

2009-08-20 Thread Justin King
seem to be a problem. See attached project. --- On Mon, 8/17/09, Justin King justin.matthew.k...@gmail.com wrote: From: Justin King justin.matthew.k...@gmail.com Subject: [rules-users] when condition on multiple facts of the same type To: Rules Users List rules-users@lists.jboss.org Date

[rules-users] Unique events / facts in working memory

2009-08-17 Thread Justin King
I'm building an application that will over time record changes in a certain component (not at any set interval, could occur any time). The component can possibly be uniquely identified via some kind of id. Is there a way that when I insert an event / fact recording a change of state in this

[rules-users] when condition on multiple facts of the same type

2009-08-17 Thread Justin King
I'm trying to have a rule execute based on the following condition: ObligationComplianceEvent(term == term 1, obligation == obligation 1, level == 1) ObligationComplianceEvent(term == term 2, obligation == obligation 1, level == 1) I pass in two facts of type

Re: [rules-users] Inserting a fact via a specific entry point inside a rule

2009-08-16 Thread Justin King
Brilliant! thank you. 2009/8/17 Mauricio Salatino sala...@gmail.com entryPoints[ob1 stream].insert(mre); ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users

Re: [rules-users] Drools fusion query

2009-08-04 Thread Justin King
Hi, My names Justin King, I'm a part of a research project at Swinburne University of Technology in Melbourne, Australia. my question is in regards to the new Drools and more specifically fusion. I'm having trouble determining whether Fusion might fulfill a requirement of our project so