<cfxml variable="resultsXML">
<addresses>
<address>
<hx:name xmlns:hx='
http://www.google.com'>Richard
Mutt</hx:name>
<addrLine1>30 Main St.</addrLine1>
<addrLine2>New Haven, CT 06460</addrLine2>
</address>
</addresses>
</cfxml>
<cfoutput>#resultsXML.addresses.address["hx:name"].xmltext#</cfoutput>
Three things:
1) Use namespace
(Here I use google arbitrarily)
2) Use associative array notation to avoid problems with the
colon
3) I have corrected the output variable