We have a 120MB XML file that we want to view. Opening it in IE brings my machine to a crawl. I guess IE is loading the whole file into memory.
Is there a tool to view this in a faster manner? Ideally a Windows GUI based tool. Would be nice if you could drill down through the data by collapsing/uncollapsing elements.
Textpad works but the data isn't formatted in a hierarchical manner. Ie: displays data as:
<TagA><TagB id="a"><TagC>abc</TagC></TagB></TagA>
instead of:
<TagA>
<TagB id="a">
<TagC>abc</TagC>
</TagB>
</TagA>