Hi,
Is there a way to map Multiple nested records using XML Mapper Utility? Please, if possible, send me an example.
Regards
Govind Davey
Do you have a specific example in mind? Can you post a WSDL with the same parameters you want to see explained?
--Vic
How do I do something like this in GI 3.5.1?
Here is the XML that needs to be mapped to a Matrix:
<a>
<a1>
<a11>abc1</a11>
<b11>def1</b11>
<c11>
<c111>xyz1</c111>
<c111>uvw1</c111>
</c11>
</a1>
<a1>
<a11>abc2</a11>
<b11>def2</b11>
<c11>
<c111>xyz2</c111>
<c111>uvw2</c111>
</c11>
</a1>
<a1>
<a11>abc3</a11>
<b11>def3</b11>
<c11>
<c111>xyz3</c111>
<c111>uvw3</c111>
</c11>
</a1>
</a>
The Matrix needs to look like this:
| a11 | b11 | c111 |
| abc1 | def1 | xyz1,uvw1 |
| abc2 | def2 | xyz2,uvw2 |
| abc3 | def3 | xyz2,uvw3 |
Thanks
I guess my question is how do I dothe above using the XML Mapping Utility only.
