[rules-users] DrlParser problem with soundslike and matches

2010-10-18 Thread Bruno Freudensprung
Hi, I am using Drools 5.1.1 (but also tried with 5.2.0.SNAPSHOT) to achieve the following scenario: 1 - use the Drools' Eclipse graphical rule editor to create a BRL file 2 - convert the BRL to DRL using the org.drools.ide.common.server.util.BRXMLPersistence and

Re: [rules-users] DrlParser problem with soundslike and matches

2010-10-18 Thread Wolfgang Laun
All the operators that are represented as Keywords must be made known to the parser; this includes all the predefined ones. This is done in class EvaluatorRegistry.. See org/drools/base/evaluators/EvaluatorRegistry,java and org/drools/compiler/PackageBuilderConfiguration.java. Best -W On 18

Re: [rules-users] DrlParser problem with soundslike and matches

2010-10-18 Thread Bruno Freudensprung
Hi Wolfgang, Many thanks for you answer! I finally decided to download Drools sources in order to debug my program. Following your advice (starting from EvaluatorRegistry), I finally found that adding a simple PackageBuilder builder = new PackageBuilder(); statement at the beginning of my