Whatever message this page gives is out now! Go check it out!
<!DOCTYPE ...> declaration by default, including during validation. This is a security hardening change that helps reduce exposure to XXE and DTD-based denial-of-service attacks.If your XML validation flow legitimately depends on a DOCTYPE declaration, explicitly pass:<cfset opts = {
ALLOWDOCTYPEDECLARATION = true,
ALLOWEXTERNALENTITIES = false,
ENTITYEXPANSIONLIMIT = 1000
}><cfset result = XmlValidate(myXmlString, "schema.xsd", opts)>ALLOWDOCTYPEDECLARATION only for trusted XML that is known to require a DOCTYPE declaration. Do not enable it for arbitrary user input or untrusted third-party payloads.