Re: [rules-users] Problem with Banking Tutorial

2013-06-18 Thread Mark Proctor
We prioritise our product releases, for which there are paid subscriptions. Via the customer support portal, you can flag up bugs and they are fixed as a priority, under monitored SLAs. The "free" community releases, are best effort. We don't tend to do maintenance releases in the community, onl

Re: [rules-users] Problem with Banking Tutorial

2013-06-18 Thread Stefan Schuster
Hello, thanks you all for your support. I have to announce that I could not recommend to use drools in our project. This Bug was one of the main reasons for it. - Can hardly belief that this is still the official stable release... We now implement a simplified solution for our problem from scratc

Re: [rules-users] Problem with Banking Tutorial

2013-04-23 Thread Davide Sottara
It is still realistic.. the team is preparing a beta release of 6.x. When that is done, I hope they will focus on finalizing 5.x.. I am waiting for 5.6.Final myself :) You may have answered this question before.. could you give a try at 5.5.1-SNAPSHOT? Thanks for your patience Davide On 04/23/2013

Re: [rules-users] Problem with Banking Tutorial

2013-04-23 Thread Stefan Schuster
Hi all, thanks a lot for your helpful answers. I'm looking forward to the update to 5.6.0. Is the mentioned time horizon ("a few days") still realistic? I.e. could you recommend me to pause the evaluation of drools, instead of downgrading to 5.4.0? We consider to use drools in a larger project,

Re: [rules-users] Problem with Banking Tutorial

2013-04-18 Thread Wolfgang Laun
On 18/04/2013, Stefan Schuster wrote: > > Please don't misunderstand me, I have a deep respect for the developer of > such complex systems like DROOLS, and I know from my own code that bugs > simply happen. But I wonder why there is still this version without any > warning the official release? >

Re: [rules-users] Problem with Banking Tutorial

2013-04-18 Thread Wolfgang Laun
On 18/04/2013, Davide Sottara wrote: > Stefan, > 5.6 is coming out in a few days.. it will be a major fix release where a > number of bugs have been isolated > and corrected. The reason it's not out yet is because more edge case > errors are being found and > corrected. I hope that an upgrade to 5

Re: [rules-users] Problem with Banking Tutorial

2013-04-18 Thread Davide Sottara
Stefan, 5.6 is coming out in a few days.. it will be a major fix release where a number of bugs have been isolated and corrected. The reason it's not out yet is because more edge case errors are being found and corrected. I hope that an upgrade to 5.6 will be recommended to all 5.5 users Davide On

Re: [rules-users] Problem with Banking Tutorial

2013-04-18 Thread Stefan Schuster
Thanks for all answers. Finally I found the ticket for this issue: https://issues.jboss.org/browse/DROOLS-15 Despite all the great functionality in Drools, this bug makes me really afraid. I can live with bugs that throw exceptions or even crash the application. But simply returning a wrong value

Re: [rules-users] Problem with Banking Tutorial

2013-04-18 Thread Mark Proctor
There are a lot of fixes in the 5.x master. Anyone verified their bugs against this? I suspect this is fixed in that. Mark On 18 Apr 2013, at 16:21, Wolfgang Laun wrote: > Ah, my memory :-) > > http://lists.jboss.org/pipermail/rules-dev/2013-January/004338.html > > Mark has promised a fix fo

Re: [rules-users] Problem with Banking Tutorial

2013-04-18 Thread Wolfgang Laun
Ah, my memory :-) http://lists.jboss.org/pipermail/rules-dev/2013-January/004338.html Mark has promised a fix for 3 months ago, but of course 5.5.0 remains broken. -W On 18/04/2013, Stefan Schuster wrote: > Hi, thank you for your response. > I'm using the latest stable release of Drools 5.5.0

Re: [rules-users] Problem with Banking Tutorial

2013-04-18 Thread Stefan Schuster
It seams that I'm not the first one with thie problem, an equal question was there a several months ago: http://drools.46999.n3.nabble.com/rules-users-Banking-Example-4-to-6-sorting-incorrect-tt4021041.html#none but there was no answer. Maybe someone has an idea today? 2013/4/18 Stefan Schuster

Re: [rules-users] Problem with Banking Tutorial

2013-04-18 Thread Stefan Schuster
Hi, thank you for your response. I'm using the latest stable release of Drools 5.5.0 final. Eclipse is Juno Service Release 2. Can you confirm, that the order 1,2,3 is the expected result? If this is a known bug, is there some kind of jira or bugzilla numer assigned to it? 2013/4/18 Wolfgang L

Re: [rules-users] Problem with Banking Tutorial

2013-04-18 Thread Wolfgang Laun
IIRC, this was a bug one or two minor versions ago. What version are you using? -W On 18/04/2013, Stefan Schuster wrote: > For the sake of completeness, here is also the RuleRunner class used in > this example: > > package org.drools.tutorials.banking; > > import java.util.Collection; > > import

Re: [rules-users] Problem with Banking Tutorial

2013-04-18 Thread Stefan Schuster
For the sake of completeness, here is also the RuleRunner class used in this example: package org.drools.tutorials.banking; import java.util.Collection; import org.drools.KnowledgeBase; import org.drools.KnowledgeBaseFactory; import org.drools.builder.KnowledgeBuilder; import org.drools.builder

[rules-users] Problem with Banking Tutorial

2013-04-18 Thread Stefan Schuster
Hello, I have a problem with the banking tutorial number 3, which is part of the examples of drools expert. It simply adds some Numbers as facts, and retracts them in an increasing order. It is very short, therefore I post the whole Code: BankingExample3.java ___