Hai,
I have an XML file as given below
<Data>
<mesg>
<MESGID>2958</MESGID>
<CONTENT>
<alert>
<applnid>INT</applnid>
<serviceid>ABC</serviceid>
<requestid>876234</requestid>
<date>27/01/2010</date>
<format>pdf</format>
<desc>STMT</desc>
<status>success</status>
</alert>
</CONTENT>
</mesg>
</Data>
Here MESGID and CONTENT are XML fields. But the CONTENT field has to be taken as it is with the xml tags given.
My Loop Xpath Query is "/Data"
and XPath query is "mesg/MESGID" and "mesg/CONTENT"
Now the values inside CONTENT are again parsed and only the values are given as output.
How do I get the entire content without parsing
Regards,
Amirths