#Working with XML in ColdFusion
Cheatsheet with code examples to read, create and search xml files
ColdFusion provides many built-in functions for doing all sort of XML based operations.
###Reading XML Document Read the document then passes it to the parser to create an XML object
<cffile action="read" file="#ExpandPath('./some.xml')#" variable="myXML" />
<cfset myDoc=XmlParse(myXML) />