RE: Building XML

2006-01-14 Thread Jennifer Gavin-Wear
output=#stock# file=#params.webroot#\stock\stock.xml addnewline=yes -Original Message- From: Bud [mailto:[EMAIL PROTECTED] Sent: 14 January 2006 00:04 To: CF-Talk Subject: Building XML Hi everyone. Happy new (almost) year. I'm curious what you experts think is the best way to create XML

Re: Building XML

2006-01-14 Thread Larry Lyons
A possibly simpler way would be to build a structure then use the StructToXML udf from cflib.org (http://www.cflib.org/udf.cfm?ID=573) to convert the structure to properly formatted XML. Much less work involved regards, larry Hi everyone. Happy new (almost) year. I'm curious what you experts

Re: Building XML

2006-01-14 Thread James Holmes
There's even less work involved in using the CFXML tag, because this is what it's for... On 1/14/06, Larry Lyons [EMAIL PROTECTED] wrote: A possibly simpler way would be to build a structure then use the StructToXML udf from cflib.org (http://www.cflib.org/udf.cfm?ID=573) to convert the

Building XML

2006-01-13 Thread Bud
Hi everyone. Happy new (almost) year. I'm curious what you experts think is the best way to create XML. Just taking dummy XML and populating it? cfset myxml ='CustomerRequest BillAddress Addr1#Address1#/Addr1 City#City#/City State#State#/State PostalCode#Zip#/PostalCode /BillAddress

Re: Building XML

2006-01-13 Thread Barney Boisvert
First way. Hands down. Though I'd probably use CFCONTENT instead of CFSET. Or even CFXML, if you need an XML doc, rather than a string. cheers, barneyb On 1/13/06, Bud [EMAIL PROTECTED] wrote: Hi everyone. Happy new (almost) year. I'm curious what you experts think is the best way to

RE: Building XML

2006-01-13 Thread Dave Watts
I'm curious what you think is the best way to create XML. The easiest way, I think, is usually to use the CFXML tag. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC,

RE: Building XML

2006-01-13 Thread Adrian Lynch
You meant cfsavecontent didn't ya? Ade -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: 14 January 2006 00:08 To: CF-Talk Subject: Re: Building XML First way. Hands down. Though I'd probably use CFCONTENT instead of CFSET. Or even CFXML, if you need an XML

Re: Building XML

2006-01-13 Thread Barney Boisvert
: Building XML First way. Hands down. Though I'd probably use CFCONTENT instead of CFSET. Or even CFXML, if you need an XML doc, rather than a string. cheers, barneyb -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: Building XML

2006-01-13 Thread Will Tomlinson
First way. Hands down. Though I'd probably use CFCONTENT instead of CFSET. Or even CFXML, if you need an XML doc, rather than a string. And if you're on 7, you can just use xmlParse() with a doc. Will ~| Message:

RE: Building XML

2006-01-13 Thread Bud
I'm curious what you think is the best way to create XML. The easiest way, I think, is usually to use the CFXML tag. A, cool. -- Bud Schneehagen - Tropical Web Creations, Inc. _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ Web Based Solutions / eCommerce Development Hosting

RE: Building XML

2006-01-13 Thread Dawson, Michael
: Building XML Hi everyone. Happy new (almost) year. I'm curious what you experts think is the best way to create XML. Just taking dummy XML and populating it? cfset myxml ='CustomerRequest BillAddress Addr1#Address1#/Addr1 City#City#/City State#State#/State PostalCode#Zip#/PostalCode /BillAddress