XML Support ASP V4 on Linux
We are moving our site from IIS to Linux running Sun One ASP, but can not get XML to work. The code I use on IIS is: 'Load the XML set xmlDocument = Server.CreateObject("MSXML2.DOMDocument.3.0") xmlDocument.async = false xmlDocument.load(Server.MapPath("/latestnews/latestnews.xml")) 'Load the XSL set xslDocument = Server.CreateObject("MSXML2.FreeThreadedDOMDocument.3.0") xslDocument.async = false xslDocument.load(Server.MapPath("/Themes/Scripts/xsl/latestnews.xsl")) set xsltTemplate = Server.CreateObject("MSXML2.XSLTemplate.3.0") xsltTemplate.stylesheet = xslDocument set xsltProcessor = xsltTemplate.createProcessor() xsltProcessor.input = xmlDocument 'Pass parameter to stylesheet xsltProcessor.addParameter "thisDate", chooseDate xsltProcessor.transform Response.Write(xsltProcessor.output) How do I get my XML and XSL files to work using Sun One ASP? /
Has anybody any suggestions pls?

