Just passing on I am using the drools 5.4.0Beta2 <br><br>The following doesn't compile using the mvel dialect . <br>rule "some rule"<br> when <br>fact: Fact()<br>then<br>BasicFact fault= new BasicFact( "/*");<br>
end<br><br>but <br>rule "some rule"<br>
when <br>
fact: Fact()<br>
then<br>
BasicFact fault= new BasicFact( "/ *");<br>
end<br>
<br>does compile some how /* is being parsed as an expression I think and not a string literal. <br><br>Thanks,<br>Ben <br>