Nylon Technology Presentation: Introduction To XPath And XmlSearch() In ColdFusion

<!--- Select the root node and all its children. --->
<cfset arrNodes = XmlSearch(
	xmlData,
	"movies"
	) />
 
<!--- Dump out resultant nodes. --->
<cfdump
	var="#arrNodes#"
	label="Named Node Selection"
	/>

For Cut-and-Paste