Problem Using MSXML to transform xmldocument
MSXML2::IXMLDOMDocumentPtr
xmlDoc("MSXML2.DOMDocument.4.0");
MSXML2::IXSLTemplatePtr
xslt("Msxml2.XSLTemplate.4.0");
MSXML2::IXMLDOMDocumentPtr
xslDoc("Msxml2.FreeThreadedDOMDocument.4.0");
MSXML2::IXSLProcessorPtr
xslProc("Msxml2.FreeThreadedDOMDocument.4.0");
xmlDoc->async = false;
bool ret = xmlDoc->load("xmlfile.xml");
xslDoc->async = false;
xslDoc->resolveExternals = false;
xslDoc->load("stylesheet.xsl");
xslt->stylesheet = xslDoc;
xslProc = xslt->createProcessor();
// Here's the problem
xslProc->input = xmlDoc ->Getxml();
xslProc->transform();
How do I set the xml file to be tranformed
If someone knows articles that can help me ...

