How to transfer/add a property to an array in the next soapcall
As a precondition I have a soap call in a datasource loop wich posts student-results into a database. The response provides the guid of the resultentry.
The soap call under test posts the resultid's (in an array) to retrieve all the student-results.
Question: How can I transfer (or better: add) the resultids to the array of this soap request.
(the property transfer I tried can only add/replace 1 entry)
The call looks like this:
<soapenv:Body>
<ns:QueueResultsRequest>
<!--Optional:-->
<ns:OrganizationId>${#TestSuite#OrganizationID}</ns:OrganizationId>
<ns:ResultIds>
<!--Zero or more repetitions:-->
<arr:guid>255BB69A-3471-4145-B9A9-551732F85BB6</arr:guid>
<arr:guid>17957A99-DE0C-4320-913C-54A4AD9D227F</arr:guid>
</ns:ResultIds>
<!--Optional:-->
<ns:TestName>Hoofstuk 5</ns:TestName>
</ns:QueueResultsRequest>
</soapenv:Body>