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 &quot;EasyApp Owner Insert&quot;<br>    ruleflow-group &quot;insert-group&quot;<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>