One question do you get different reslts if you do the folowing for the first rule:<br><br>Message( message == "somethingDifferent" ) # this should never match<br><br>All I did was eliminate the eval and the explicit call to equals
<br><br><div class="gmail_quote">On Nov 21, 2007 4:05 AM, Michal Bali <<a href="mailto:michalbali@yahoo.ie">michalbali@yahoo.ie</a>> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div><div style="font-family: times new roman,new york,times,serif; font-size: 12pt;"><div>Hi,<br><br>I have following rule that should never fire, but it does :)<br><br>package com.sample<br>import com.sample.DroolsTest.*
;<br>rule "ruleThatShouldNeverFire"<br> when<br> Message( eval("somethingDifferent".equals(message)) ) # this should never match<br> SomeBeanA( ) or SomeBeanB( )<br> then
<br> System.out.println( drools.getRule().getName() + " fired and shouldn't" );<br>end<br><br>stateful ruleSession with following
insertions:<br> Message message = new Message();<br> message.setMessage( "Hello World" );<br> workingMemory.insert( message );<br> workingMemory.insert( new SomeBeanA() );
<br> workingMemory.insert( new SomeBeanB() );<br><br>It behaves the same way if we use predicates or retun values:<br> #Message( msg : message -> ("somethingDifferent".equals (msg)) ) # this should never match
<br> #Message( message == ("somethingDifferent".equals (message)) ) # this should never match<br><br>It looks like the AlphaNode is missing from
the Rete network.<br><br>Tested with Drools 4.0.3. Java build 1.5.0_11-b03.<br><br>Any ideas if this is a bug or am I doing something wrong?<br><br>Thanks.<br>Regards,<br>Michal<br></div></div><br>Send instant messages to your online friends
<a href="http://uk.messenger.yahoo.com" target="_blank">http://uk.messenger.yahoo.com</a> </div><br>_______________________________________________<br>rules-users mailing list<br><a href="mailto:rules-users@lists.jboss.org">
rules-users@lists.jboss.org</a><br><a href="https://lists.jboss.org/mailman/listinfo/rules-users" target="_blank">https://lists.jboss.org/mailman/listinfo/rules-users</a><br><br></blockquote></div><br>