How to correct copy/append/insert a array in BPEL
BPEL
-
Hi @ all,
I have a message type I'd like to iterate through and extract values from array (1).
Then place into another array (2):
TestOutputVariable(Array (1)):
<roottest>
<AAA>
<BBB>result1.1</BBB>
<BBB>result1.2</BBB>
<testname>test1</testname>
</AAA>
<AAA>
<BBB>result2.1</BBB>
<BBB>result2.2</BBB>
<testname>test2</testname>
</AAA>
</roottest>
ReportInputVariable(Array(2)):
<rootreport>
<AAA>
<name/>
</AAA>
</rootreport>
for example ReportInputVariable must be like:
<rootreport>
<AAA>
<name>test1
</AAA>
<AAA>
<name>test2
</AAA>
</rootreport>

