Thanks. BUT ... problem - when I use xmlsearch ... the multiple rss.channel.item[i].title values ... aren't placed into an array. ..
instead ... the multiple sub components of item[i] are sequentially listed; ..
i.e. item[1].xmltext = title
i.e. item[2].xmltext = description
i.e. item[3].xmltext = text
etc
instead ... i need ...
item[1].title.xmltext
item[2].title.xmltext
item[3].title.xmltext
make sense!?
Richard
Main Topics
Browse All Topics





by: PluckaPosted on 2006-02-09 at 19:32:52ID: 15919222
rcbuchanan,
Use XmlSearch which is CF's version of XPath, search for XPath queries to assist you.
<cfset myXml = XmlParse(xmlVariable) />
<cfset nodes = xmlSearch(configXml, "//items/*") />
<cfdump var="#nodes#" />
This should return all items from your xml.
Regards
Plucka