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

<!---
	Get all the attribute nodes that are children
	of the movie nodes.
--->
<cfset arrNodes = XmlSearch(
	xmlData,
	"movies/movie/@*/"
	) />
 
<!--- Dump out the resultant nodes. --->
<cfdump
	var="#arrNodes#"
	label="XPath: movies/movie/@*/"
	/>

For Cut-and-Paste