Hello!
I have in an sql-database different xml-strings that have been saved there to keep log of soap-calls and I would like to be able to be able to view these xml strings in my application, in a way that every elemet would be on a new row like:
<root>
<test>adgd</test>
<test2>adgd</test2>
</root>
instead of:
<root><test>adgd</test><test2>adgd</test2></root>
has anyone programmed anything similar or do you know if there is any easy way of displaying xml in this way?
I have in an sql-database different xml-strings that have been saved there to keep log of soap-calls and I would like to be able to be able to view these xml strings in my application, in a way that every elemet would be on a new row like:
<root>
<test>adgd</test>
<test2>adgd</test2>
</root>
instead of:
<root><test>adgd</test><test2>adgd</test2></root>
has anyone programmed anything similar or do you know if there is any easy way of displaying xml in this way?