I'm not sure if there is anything specific to cXML but I have made a couple of components that could be useful in creating an extended, cXML specific component:
http://betterxml.riaforge.org/ What may work out easier for you now however, is to simply output xml using cfsavecontent, or cfxml: <cfsavecontent variable="cXmlString"> <?xml version="1.0"?> <cXmlTags> <IDontKnowWhatTheyAre foo="bar" /> </cXmlTags> </cfsavecontent> <cffile action="write" file="#someFile#" output="#cXmlString#" /> I'd be happy to help write a cXml specific extension to my components, just let me know. With it you could have things like: <cfscript> cXmlObj = CreateObject('component', 'betterXml.cXml').init(); cXmlObj.AddInvoice(invoiceArgs...); cXmlObj.Write(someFile); </cfscript> HTH Dominic 2008/5/7 Steve Sequenzia <[EMAIL PROTECTED]>: > I am working on a fairly simple solution that allows users to input > information from an invoice and it then drops the data in a MSSQL database. I > need to then be able to pop out cXML files that can be uploaded to a billing > vendor. Does anyone out there have any experience with cXML and how to > produce a file using ColdFusion? > > Any help on this would be great. > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304880 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

