I am working with some software that sends and receives XML... and for debugging purposes it's obviously helpful to look at what's getting passed back and forth. IE does a great job of word wrapping and formatting SINGLE xml files... but I am kinda stuck on how to apply the same functionality to iframes in an HTML page.
Load up an XML file in IE... I want to do this with dynamically generated XML (3 sometimes 4 or 5 xml files) inline for debugging purposes.
I tried the following:
<iframe width="800" height="600"><xml><node>stuff</node></xml></iframe>
But that just shows an empty iframe. I am also wrapping my XML in tags right now... and for some reason the XML just doesn't show up on the page.
Any suggestions better than copy/pasting the XML into a file and opening it in IE every time I want to look at my request/response XML?