I had an XML Data format as below,
<?xml version= "1.0" encoding="utf-8"?
<Request service = "OrderService">
<Head>XXXX</Head>
<Body>
<Order orderid="0" mailno="0" company=“a” address="b">
<OrderDetail name="aac" count="1"/>
</Order>
<Order orderid="1" mailno="1" company=“2” address="b">
<OrderDetail name="aa" count="b"/>
</Order>
<Order orderid="2" mailno="2" company=“3” address="b">
<OrderDetail name="aaa" count="bb"/>
</Order>
<Order orderid="3" mailno="3" company=“4” address="b">
<OrderDetail name="aabb" count="bb"/>
</Order>
</Body>
</Request>
And i want to split the Order to One by One and send to another system.
How should i do in Policy to split them?
Thanks in advance for your help.