I have a request body:
<tns:InputRequest xmlns:tns="http://tempuri.org/"> <tns:ID>ID_001</tns:ID> <tns:ID>ID_002</tns:ID> <tns:Description>Description for ID_001</tns:Description> <tns:Description>Description for ID_002</tns:Description> </tns:InputRequest>
and to get the ID and Description value, I created the property as:
<property xmlns:tns="http://tempuri.org/" name="ID" expression="//tns:ID" scope="default" type="STRING"/> <property xmlns:tns="http://tempuri.org/" name="Description" expression="//tns:Description" scope="default" type="STRING"/>
But that gives me only one meaning. How can I create an array of properties so that I can store several identifier and description values ββin it and how to deviate from this property of the array? Looking forward to your reply. thanks in advance
source share