views:

40

answers:

2

Hello, I have some native code which generates native XML node of MSXML. I need that root node in C++/CLI to be use as XMLTextWriter or in any form of XML in C++/CLI.

Is there any interop available for MSXML Node for using in C++/CLI.

Regards Usman

A: 

No, MSXML and System.Xml are different code bases. You have to get the xml content of the node in MSXML via .xml property and then parse the the content again in System.Xml.

Samuel Zhang
A: 

You don't want to do that if you can avoid it. Microsoft explicitly does not support mixing MSXML with .NET

http://support.microsoft.com/kb/815112

Logan Capaldo