I'm using big XML files which I'd like t osplit into several. Then C++ program using MSXML parser converts the XML file into several binary files. The problem occured onece I've tried to split the document into several files using
<!Entity foo SYSTEM "foo.xml">
...
<mytag> &foo; </mytag>
I've opened the document through IE and it did merge the documents and I've seen the same content as the whole document. But when I've ran my program it just warned me that node &foo can't be resolved (for I didn't expect such nie in the document). So, the MSXML parser just leave &foo as a child node but didn't replace it by the text from foo.xml. How could I achieve external entity parsing in the same way as IE using MSXML parser? Just don't want to know in my program that the document splitted. Is it possible?