i have a web service that returns data but i cannot find a way how to choose the fields that returns from the web service. i have param-in that i send to the web service and i'm getting fields parameters as param-out. this is how i'm parsing it:
<Query>
<Method Name="methodname" Namespace="namespacename">
<Paramenters>
<Parameter Name="param-in-name-1">
<DefaultValue>0</DefaultValue>
</Parameter>
<Parameter Name="param-in-name-2">
<DefaultValue>0</DefaultValue>
</Parameter>
</Parameters>
</Method>
<ElementPath IgnoreNamespace="true">
*
</ElementPath>
</Query>
this parsing above brings all fields but i need to take specific fields. i tried to add this below to the elementpath but it didnt work: /elementname1{}/elementname2{}/fieldname1
I realized that its really depend on the web service schema for example, this schema that i made more complex by adding nested parameters:
i made it more complicated by sending parameters from the second layer(parameters inside a class/element):
there are 2 ways for me to implement the data retrieved from the xmldp query
1.second layer without the array data field:
2.second layer only the array data field: