thibaud
Member since Feb 23, 2009
- Profile: /members/2982-thibaud.htm
- URL: http://www.thibaud.be
- Comments: 2
Recent Blog Comments By thibaud
-
Nylon Technology Presentation: Introduction To XPath And XmlSearch() In ColdFusion
Posted on Feb 23, 2009 at 8:53 PM
thanks for the quick reply. I finally figured it all out in the mean time. I was using : /item[@name = #someName#] which strangely - to me at least - needed to be: /item[@name = '#someName#'] All working fine now just as you said. Thanks again for the quick reply.... read more »
-
Nylon Technology Presentation: Introduction To XPath And XmlSearch() In ColdFusion
Posted on Feb 23, 2009 at 8:00 PM
I'm all green with cf and.. I can't figure out how to save the result of an xmlSearch to an xml file, this: <cfset a = XmlSearch(xml, "/item[@name = 'someName']") /> <cfset xml = XmlParse(a)/> <cffile action="write" file="file.xml" output="#xml#" /> obviously doesn't work ("com... read more »