[rules-users] prevent rule evaluation for certain rules while event insertion

2011-09-08 Thread Neel
in data store and insert all previous events also in session when I get a new event.Please help me regarding the issue. Thanks,Neel ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users

Re: [rules-users] rule parse error for null check

2011-08-29 Thread Neel
*/();    } You'll just run into another MVEL bug. -W 2011/8/28 Neel neelesh...@yahoo.co.in Hi,I'm using drools-5.3.0.Beta1. I've following rule file: import java.util.*; declare Student    name : String @key    subjectGradeMap : HashMap    end   rule Subject grade points dialect mvel

[rules-users] fireAllRules() doesn't return back

2011-08-28 Thread Neel
added); end While executing RHS of above rule, fireAllRules() doesn't return, it hangs.Please help.Thanks,Neel ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users

[rules-users] rule parse error for null check

2011-08-28 Thread Neel
in the above scenario. Thanks,Neel ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users

Re: [rules-users] declaring attributes for an existing class

2011-08-17 Thread Neel
is that there are no fields in that declaration. It says that additional fields can't be there in declaration for existing types. Are there other ways to achieve the same? Thanks,Neel What version of Drools are you using? AFAIK what you have done should work. 2011/8/17 Neel neelesh...@yahoo.co.in Hi

[rules-users] declaring attributes for an existing class

2011-08-16 Thread Neel
Hi,I've following class defined:public class User { private String id; //get,set, equals hashCode method are defined } If I add more attributes using declare syntax as below:declare User    name : Stringend it gives error Error creating field accessors for 'User' for type 'User'.