<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
I also tried the following rule syntax with from but without collect (
) :<br>
<br>
<font face="Courier New, Courier, monospace">rule "Explode Globals"<br>
&nbsp;&nbsp;&nbsp; ruleflow-group "Data Prep"<br>
&nbsp;&nbsp;&nbsp; when<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $market : Market() from request.requestObjects.values<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $series : CandleSeries() from $market.candleSeries<br>
&nbsp;&nbsp;&nbsp; then <br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; insert ( $series );<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; insert ( $market );<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>
end</font><br>
<br>
At runtime I get an exception: org.mvel.PropertyAccessException: unable
to resolve property: values<br>
</body>
</html>