Re: [rules-users] java.lang.ArrayIndexOutOfBoundsException at Frame

2012-01-27 Thread shoonya
@Mujoko Are you able to solve this ? I am also facing similar exception (Using decision table to generate drl, also this is working on my local machine, but failing on production) -- View this message in context:

Re: [rules-users] java.lang.ArrayIndexOutOfBoundsException at Frame

2012-01-20 Thread Michael Anstis
Does your problem remain? The DRL and Java code appear fine. If you are still having problems, please explain your entire process to replicate the problem: from authoring in Guvnor, to creating a KnowledgeBase, Session and calling fireAllRules. Can you please also advise if the problem remains

Re: [rules-users] java.lang.ArrayIndexOutOfBoundsException at Frame

2012-01-20 Thread mujoko mujoko
I'll inform if the error still remains. Need to test with big data. @Data and @EqualsAndHashCode annotation is lombok library to create setter and getter while compile. 2012/1/20 Michael Anstis michael.ans...@gmail.com Does your problem remain? The DRL and Java code appear fine. If you

Re: [rules-users] java.lang.ArrayIndexOutOfBoundsException at Frame

2012-01-19 Thread mujoko mujoko
Hi Here is my CDR class package com.rbtsb.tm.meter.model; import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import javax.persistence.Transient; import lombok.Data; import lombok.EqualsAndHashCode; import

[rules-users] java.lang.ArrayIndexOutOfBoundsException at Frame

2012-01-18 Thread mujoko mujoko
Hi Drools Users, I'm new member, Mujoko. I got issue regarding my rules. Several times got exception when trying to create KnowledgeSession. I used drools-core 5.3.0.Final and drools-compiler 5.3.0.Final. java.lang.ArrayIndexOutOfBoundsException: -1 at

Re: [rules-users] java.lang.ArrayIndexOutOfBoundsException at Frame

2012-01-18 Thread Michael Anstis
You're going to give a little more information, such as the DRL you're unable to compile. 2012/1/18 mujoko mujoko mujoko.muj...@gmail.com Hi Drools Users, I'm new member, Mujoko. I got issue regarding my rules. Several times got exception when trying to create KnowledgeSession. I used

Re: [rules-users] java.lang.ArrayIndexOutOfBoundsException at Frame

2012-01-18 Thread mujoko mujoko
For your info, for the same rules. It's not always happen, the error some times coming. For me the rule is fine (I used guvnor) Here is the rule import com.rbtsb.tm.meter.model.CDR; import org.apache.log4j.Logger; global Logger log; rule ProductTag-FixedSMS when $cdr : CDR(callClassCode == F1

Re: [rules-users] java.lang.ArrayIndexOutOfBoundsException at Frame

2012-01-18 Thread Wolfgang Laun
Please show field and getter declarations in class CDR -W On 18/01/2012, mujoko mujoko mujoko.muj...@gmail.com wrote: For your info, for the same rules. It's not always happen, the error some times coming. For me the rule is fine (I used guvnor) Here is the rule import