Multilayered XML content does not display correctly

[CR #360262] The content for multilayered XML applications does not display correctly. For example, if the Symbol value is “AFRT” and the Name is “American Fire Re,” the application displays some numerical values for both fields.

Workaround: Customize a content XSLT template to filter out the Web service response. The customized template can be used for the Web services response with one layer of XML content since you are mapping the XML structure to a grid structure.

The content XSLT should ensure that the output XML is in this format:

<data>
<Record>
<Field op_label="col1" op_position="1">Data11</Field>
<Field op_label="col2" op_position="2">Data12</Field>
</Record>
<Record>
<Field op_label="col1" op_position="1">Data21</Field>
<Field op_label="col2" op_position="2">Data22</Field>
</Record>
</data>