Hi guys,<br><br>I am playing with the OrderExample in drools-examples and was wondering how I get access in my rules to the parameters that are sent to startProcess? e.g.<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Map&lt;String, Object&gt; parameters = new HashMap&lt;String, Object&gt;();<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; parameters.put(&quot;order&quot;, order);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; parameters.put(&quot;orderId&quot;, order.getOrderId());<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; parameters.put(&quot;email&quot;, emailTextField.getText());<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ProcessInstance processInstance = ksession.startProcess(&quot;org.drools.examples.process.ruleset.RuleSetExample&quot;, parameters);<br>
<br clear="all">I have access to the ProcessInstance but there doesn&#39;t seem to be any clear path to the parameters.<br><br>thanks<br>Steve<br><br>