Whatever message this page gives is out now! Go check it out!
<cffile action="read" file="C:\CFusion\wwwroot\testdocs\simpletransform.xsl"
variable="xslDoc">
<cfset transformedXML = XmlTransform(mydoc, xslDoc)>
<cffile action="write" file="C:\CFusion\wwwroot\testdocs\transformeddoc.xml"
output=transformedXML>
XmlTransform() with an XML string, ColdFusion parses that XML before applying the XSLT. Starting in this release, XML containing a <!DOCTYPE ...> declaration is rejected unless you pass ALLOWDOCTYPEDECLARATION=true in the params struct.<cfset params = {
ALLOWDOCTYPEDECLARATION = true,
ALLOWEXTERNALENTITIES = false,
ENTITYEXPANSIONLIMIT = 1000
}>
<cfset transformedXML = XmlTransform(myXmlString, xslDoc, params)>