All,
I am not sure if this is possible so I thought to better ask here. In C# I am doing a lot of XSLT transformations of very big XML files (15MB each) The constant problem I am facing is the fact that XPathDocument uses way too much data to represent the XML in memory in a tree like format. Is it possible to use XmlReader which is SAX based to transform the document using XSLT?
Many Thanks,
MK