Re: [rules-users] Can we do this with drools ?

2008-03-27 Thread Steven Williams
There are some undocumented classes in drools-decisiontables that should let you do this. Have a look at DataProviderCompilerIntegrationTest.java cheers Steve* * On Tue, Mar 25, 2008 at 12:03 PM, ferry97 <[EMAIL PROTECTED]> wrote: > > Thanks Mark for the info. > Could you show me how to do it usi

[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 = repo.createPack

Re: [rules-users] Missing mvel class after upgrade 4.0.4 => 4.0.5

2008-03-27 Thread Steven Williams
Hi Christian, I also ran into this problem. The mvel library on repo1.maven.org is wrong. Try using the jboss or codehaus repos. cheers Steve On Wed, Mar 26, 2008 at 10:28 PM, Christian Gorbach <[EMAIL PROTECTED]> wrote: > hi , > > I am using maven, I tried to upgrade to the latest release be j

[rules-users] Sponship Request for RuleML

2008-03-27 Thread Mark Proctor
I will be at the RuleML conference again this year. Last year was a great event with lots of good presentations and knowledge sharing. While the conference is organised by the RuleML group it is not specific to the RuleML standard and various standards and technologies are discussed at this eve

[rules-users] Rule Agent retrieving null rulebase

2008-03-27 Thread Vinicius Carvalho
Hello there! I've just started with the BRMS (what an awesome feature I might add). So I've deployed a simple rule, packaged it and created a snapshot. The package is created and when I access the url provided by the BRMS it tries to download the package, so I'm assuming it is published. So I ran

[rules-users] RuleApps2008: Two Weeks Before Submission Deadline

2008-03-27 Thread Emilian Pascalau
[We apologize in advance if you receive multiple copies of this CFP] 2nd East European Workshop on Rule-Based Applications - RuleApps'2008 - July 21-22, 2008, Patras, Greece http://oxygen.informatik.tu-cottbus.de/RuleApp2008/ W

[rules-users] Re: BigDecimal is Int or Long?

2008-03-27 Thread Geoffrey De Smet
I personally wouldn't recommend accumulate's or mvel functions for financial data in drools 4.0.5. Just try this code: java.math.BigDecimal a = new java.math.BigDecimal("45.1"); java.math.BigDecimal b = new java.math.BigDecimal("40.0"); double c = a.doubleValue() - b.doubleValue(); return new ja