Re: XML to CF query object: possible?

2006-07-22 Thread Michael Traher
since the xml object is really just a complex mixture of arrays and structures once you navigate to the array of structures you want to turn into an array you could probably use one of the cflib functions. On 7/18/06, Pete Ruckelshaus [EMAIL PROTECTED] wrote: Looking through the docs and cflib

Re: XML to CF query object: possible?

2006-07-22 Thread Larry Lyons
Looking through the docs and cflib I don't see anything, but have any of you converted an XML doc to a CF query object? If so, can you point me in the right direction? Thanks Pete Checkout CFLib.org, it has several query functions that may do that, for instance QueryToXML,

Re: XML to CF query object: possible?

2006-07-22 Thread Pete Ruckelshaus
I need to go the other way, XML - query On 7/22/06, Larry Lyons [EMAIL PROTECTED] wrote: Looking through the docs and cflib I don't see anything, but have any of you converted an XML doc to a CF query object? If so, can you point me in the right direction? Thanks Pete Checkout

Re: XML to CF query object: possible?

2006-07-21 Thread Dan Plesse
If a CFquery object is serializable why would you need it to be a XML string? and WDDXing a cfquery object works too and thats XML right so why don't you use that??? Dan ~| Introducing the Fusion Authority Quarterly Update. 80

RE: XML to CF query object: possible?

2006-07-21 Thread Munson, Jacob
You're going the wrong way. He wanted to turn XML into a query object. -Original Message- From: Dan Plesse [mailto:[EMAIL PROTECTED] Sent: Friday, July 21, 2006 12:15 PM If a CFquery object is serializable why would you need it to be a XML string? and WDDXing a cfquery object

XML to CF query object: possible?

2006-07-18 Thread Pete Ruckelshaus
Looking through the docs and cflib I don't see anything, but have any of you converted an XML doc to a CF query object? If so, can you point me in the right direction? Thanks Pete ~| Introducing the Fusion Authority Quarterly

Re: XML to CF query object: possible?

2006-07-18 Thread Claude Schneegans
Looking through the docs and cflib I don't see anything, but have any of you converted an XML doc to a CF query object? If so, can you point me in the right direction? May be CF_REextract ( http://www.cftagstore.com/tags/cfreextract.cfm ) could help you. It can parse about anything from about

RE: XML to CF query object: possible?

2006-07-18 Thread Munson, Jacob
I do this in CFQuickDocs, here's a shortened version of what I do: cffile action=read file=#baseCFPath#xml/cfmlTags.xml variable=xmlDoc !--- Create an XML document object from the XML text --- cfset xmlCFTagsObj = XmlParse(xmlDoc) cfset numTags = ArrayLen(xmlCFTagsObj.Tags.tag) !--- The next