Hi, We are in the process of upgrading MSXML 3.0 to MSXML 6.0 for one of our applications which has 82 pages.
All pages use DOM Documents. However 15 of these pages consisting of FreeThreaded and XSLTemplate are failing to run successfully after this upgrade. Below is the code:
Set objXmlDoc = Server.CreateObject("MsXml2.DOMDocument.6.0")
Set objXslDoc = Server.CreateObject("Msxml2.FreeThreadedDOMDocument.6.0")
Set objXSLTemplate = Server.CreateObject("Msxml2.XSLTemplate.6.0")
objXSLTemplate.SetProperty "AllowXsltScript”, True
objXSLTemplate.stylesheet = objXslDoc
Getting following error: Reference_to_undeclared_namespace_prefix:_'rs'.
Researched a little and see various queries - mostly unresolved about XSLT compatibility with MSXML6.dll
Tried following, but it didn't work either :(
objXslDoc.SetProperty "AllowXsltScript”, True
Tried various options but no rescue, please help!
Thank you so much in advance.