Re: [rules-users] "unable to resolve token" in simple mvel RHS

2008-02-19 Thread Edson Tirelli
Hehe, my question is because 14 means it was compiled to JDK 1.4... the actual version is 1.2.21. :) Well, it seems it is a bug... I see you open several tickets in the JIRA.. I'm going through some of them... if you didn't opened one for this, may I ask you please to do it? Thanks,

Re: [rules-users] "unable to resolve token" in simple mvel RHS

2008-02-19 Thread Godmar Back
> md5sum ../WEB-INF/lib/mvel14-1.2.21.jar 67b9f1dd16b353327a9ef4fe708a8b62 ../WEB-INF/lib/mvel14-1.2.21.jar (I'm pretty certain this time...) On Feb 19, 2008 1:41 PM, Edson Tirelli <[EMAIL PROTECTED]> wrote: > >Godmar, > >Can you please confirm what version of MVEL you are using? > >

Re: [rules-users] "unable to resolve token" in simple mvel RHS

2008-02-19 Thread Edson Tirelli
Godmar, Can you please confirm what version of MVEL you are using? Thanks, Edson 2008/2/19, Godmar Back <[EMAIL PROTECTED]>: > > Hi, > > with Drools 4.0.4 and MVEL 1.4, simple RHS like this one fail for me: > > --- > package test; > > dialect "mvel" > > rule "Rule #1" > when > th

[rules-users] "unable to resolve token" in simple mvel RHS

2008-02-19 Thread Godmar Back
Hi, with Drools 4.0.4 and MVEL 1.4, simple RHS like this one fail for me: --- package test; dialect "mvel" rule "Rule #1" when then System.out.println("now computing 1+1..."); Integer two = new Integer(2); System.out.println(two); end --- now computing 1+1... org.mvel.CompileExcept