Stripping XML Name Spaces And Node Prefixes From ColdFusion XML Data (To Simplify XPath)

<!--- Search for "searchFor" XML nodes using XPath. --->
<cfset arrSearchNodes = XmlSearch(
	xmlRequest,
	"//*[name()='searchFor']"
	) />

For Cut-and-Paste