Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It seems to me that the XML manipulation functions in ColdFusion 8 are not as mature as those for manipulating arrays and structures. Do you have any suggestions for additional functions/tags which make it more straightforward to manipulate a parsed XML document? (I've come across XML2Struct but as I'm going to write the manipulated XML back out to a file, I'd rather not transform it and then have to transform back)

share|improve this question
1  
A large number of the structure and array functions can also be used on XML docs. – Al Everett May 13 '09 at 14:02
That's kinda what annoys me about it - feels like a free-for-all, an XML piñata. – Alistair Knock May 15 '09 at 11:14
Thanks for all the suggestions, a good set of resources there. Turns out, after writing most of the code, cffile is disabled so I can't really use XML anyway! – Alistair Knock May 15 '09 at 11:16
Alistair - you can cfinclude the xml file if it is local, or read it in via cfhttp - both of these will get around the cffile limitation. – Nathan Strutz May 21 '09 at 19:03
That's true for the visible side of the application, but when the admin side needs to write to the file, it would need to export the XML to the user, who'd then upload it via sftp. Not ideal but a workaround nonetheless. (potentially cfftp would work but that's another question altogether...) – Alistair Knock May 22 '09 at 11:15

3 Answers

up vote 5 down vote accepted

You might find a few functions to use on cflib.org.

Ben Nadel has quite a few blog posts on xml manipulation and could probably give quite a few tips on using ColdFusion's xml functions beyond what you think is possible.

Another option is to just tap into the java by using createObject("java","some.java.class") and manipulate the xml. I'm sure you could find whatever you need in the java api.

share|improve this answer
Ben Nadel, rocks when it comes to xml coding/parsing, and how to do it with small or large files, speedily. – crosenblum Feb 4 '10 at 16:33

Alistar,

Jayson has great suggestions, truly great, but I have another one - in a ColdFusion parsed XML object, you can treat the data as structs and arrays - they are essentially that anyway, just arranged in an XML way. StructCount, structInsert, structDelete, arrayLen, arrayAppend, arrayDeleteAt, etc. They all work on XML nodes.

Still, though, I would agree about the lack of maturity in CF's XML tools. It seems like it's missing the simple wow factor that CF is so good at.

HTH

share|improve this answer

I know you said you don't want to transform the XML into usable objects and then transform it back, but since we're on the topic I thought I would post a plug for two apps similar to XML2Struct, that you mentioned.

I've used XMLToAnything (and its companion, AnythingToXML) in the past with great success.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.