MVEL appeared to be null pointer protected when it evaluated our rules ... at least until it got to a Boolean attribute. In every other instance when an value is null Drools skips over the rule ... however, I get the null pointer exception listed above when Drools goes to execute this rule and the getOwn_eaIsProposedInsuredIndAsBoolean method returns null.<br>
<br>rule "EasyApp Owner Insert"<br> ruleflow-group "insert-group"<br> when<br> $ea : EasyApp(!getOwn_eaIsProposedInsuredIndAsBoolean())<br> then<br> insert($ea.getOwn_xmParty());<br>
insert($ea.getOwn_xmAddress());<br> insert($ea.getOwn_xmRelation());<br>end<br><br>Can anyone provide me some guidance?<br>