1. <node name="Intake Order" async="true">
  2.          
  3.          <action name="esbAction" class="org.jboss.soa.esb.services.jbpm.actionhandlers.EsbActionHandler">
  4.             <esbCategoryName>BPM_Orchestration4</esbCategoryName>
  5.             <esbServiceName>IntakeService</esbServiceName>
  6.             <!-- async call of IntakeService -->            
  7.             <bpmToEsbVars>
  8.                 <mapping bpm="entireOrderAsXML" esb="BODY_CONTENT" />               
  9.             </bpmToEsbVars>
  10.             <esbToBpmVars>
  11.                 <mapping esb="body.entireOrderAsXML" bpm="entireOrderAsXML" />
  12.                 <mapping esb="body.orderHeader" bpm="entireOrderAsObject" />
  13.                 <mapping esb="body.customer" bpm="entireCustomerAsObject" />                           
  14.                 <mapping esb="body.order_orderId" bpm="order_orderid" />
  15.                 <mapping esb="body.order_totalAmount" bpm="order_totalamount" />   
  16.                 <mapping esb="body.order_orderPriority" bpm="order_priority" />
  17.                 <mapping esb="body.customer_firstName" bpm="customer_firstName" />
  18.                 <mapping esb="body.customer_lastName" bpm="customer_lastName" />
  19.                 <mapping esb="body.customer_status" bpm="customer_status" />               
  20.             </esbToBpmVars>
  21.          </action>
  22.          
  23.       <transition name="" to="Review Order"></transition>
  24. </node>