I want to convert my XML into a CSV file
“System/Main Chassis/Front Panel; “OMA/LCDprops/LCDobj/lcdaccessstate”; 0->disabled;1->enabled;2->N.A”
Where
“System/Main Chassis/Front Panel=path of the xml display page in the report”
“OMA/LCDprops/LCDobj/lcdaccessstate=node path(xpath)”
“0->disabled;1->enabled;2->N.A=all the possible values and their meanings for that particular node”
Can someone please let me know the best way to achieve this?
A more simple solution could be be an xsl stylesheet transormation from the xml to text file. You can manage the xsl transformation in C# with XslCompiledTransform object if you want