Given the following XML "thisXML":

I can obtain the product name via
<cfset vProduct = thisXML.xmlchildren[1].xmltext>
But, how do obtain a value by xmlName, rather than by xmlChildren array position, i.e. in pseudocode:
<cfset vProduct = thisXML.xmlchildren[xmlName='product'].xmltext>