ArrayAppend() Does Not Work With ColdFusion's XML Pseudo-Node-Sets

Posted December 22, 2008 at 9:27 AM

Tags: ColdFusion

I stumbled upon this the other day; at first, I was a bit confused, but the more I think about it, the more I understand that it makes perfect sense. ColdFusion's ArrayAppend() method works with XML children, but not with pseudo-XML-node-sets. Take a look at this example:

 Launch code in new window » Download code as text file »

  • <!--- Define our ColdFusion XML document. --->
  • <cfxml variable="xmlData">
  •  
  • <girls>
  • <girl name="Kimmie" />
  • <girl name="Kit" />
  • <girl name="Sarah" />
  • <girl name="Jill" />
  • </girls>
  •  
  • </cfxml>
  •  
  • <!---
  • Append a duplicate girl node to the list of girl nodes.
  • By duplicating, the parent document should be handled
  • automatically.
  • --->
  • <cfset ArrayAppend(
  • xmlData.girls.girl,
  • Duplicate( xmlData.girls.girl[ 1 ] )
  • ) />
  •  
  • <!--- Dump out the new XML document. --->
  • <cfdump
  • var="#xmlData#"
  • label="xmlData After Duplicate() Append."
  • />

Here's we're just duplicating an XML node and then appending it onto the originating node list. When we run this code, we get the following ColdFusion error:

The ArrayAppend ColdFusion function is not supported on this object. The ArrayAppend ColdFusion function is not supported on an object of type coldfusion.xml.XmlNodeListWrapper. For example, XML objects can be operated on by a subset of the structure and array functions, but not all.

The problem here is that we are not using the XmlChildren collection. Rather, we are using the pseudo-node-set:

xmlData.girls.girl

What this does is collect all of the "girl" nodes into a coldfusion.xml.XmlNodeListWrapper object to allow for easier (and perhaps more meaningful) traversal. And, in an example like the one above, it might seem silly since the girl pseudo-node-set is the same as the collection of all XmlChildren nodes. However, remember that if we have mixed nodes, the pseudo-node-set will still work.

The simple fix for this is to refer to the child nodes using the XmlChildren collection:

 Launch code in new window » Download code as text file »

  • <cfset ArrayAppend(
  • xmlData.girls.XmlChildren,
  • Duplicate( xmlData.girls.girl[ 1 ] )
  • ) />

This time, the code runs as expected.

So, this is a minor note; but, if you don't realize what is going on, it could really trip you up - perhaps even make you believe that you can't append XML nodes to an existing document.

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Other Searches  |  Print Page




Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

There are no comments posted for this web log entry.


Post Comment  |  Ask Ben

Recent Blog Comments
Mar 22, 2010 at 7:43 AM
Terms Of Service / Privacy Policy Document Generator
Thankyou for this very helpful form. You've made my life much easier today. I'll have a look around your site... I'm sure there's some more good stuff here..Thanks Dave ... read »
Mar 22, 2010 at 7:21 AM
Encountered "(. Incorrect Select Statement, Expecting a 'FROM', But Encountered '(' Instead, A Select Statement Should Have a 'FROM' Construct.
I got this exception now. In case you're using var-es local struct, CF gives you couple of "new" exceptions: Encountered "local. and Encountered "id. Incorrect Select List, Incorrect select colum ... read »
Mar 22, 2010 at 3:08 AM
Ask Ben: Selecting XML Attributes Given Other XML Attributes
Thanks for the response. I finally discovered that I was getting this error because I had cfsetting enablecfoutputonly="yes" in Application.cfc, and was neither setting it to false elsewhere nor brac ... read »
Mar 21, 2010 at 8:57 PM
The Bourne Ultimatum Starring Matt Damon And Julia Stiles
late to the party, but my observation is this: rewatch carefully for the platonic nature of the relationship between nicki and jason. she never flirts with him. he never comes on to her. they alway ... read »
Mar 21, 2010 at 7:40 PM
Is Simulating User-Input Events With jQuery Ever A Good Idea?
A couple of things. One you embed the initial state of of more-info in the CSS. IMHO, that behavior should be in jQuery: moreInfo.hide(); It shows that the behavior your toggling and closing is mor ... read »
Mar 21, 2010 at 3:59 PM
Exploring ColdFusion Component Runtime Class Properties And Serialization
@Elliott, according to Ben's experiment, serializeJSON() doesn't access the private data by default - it doesn't even access the getHair() method - so trying to clone a Girl.cfc via serializeJSON/des ... read »
Mar 21, 2010 at 3:49 PM
Ask Ben: Javascript String Replace Method
I'm confused a bit by what you are asking, but if had this sentence: The color, red, is in the style statement; style: red;. and wanted to remove all or change all of the commas, colons, and semi-c ... read »
Mar 21, 2010 at 3:13 PM
Ask Ben: Javascript String Replace Method
I am trying to make a java program to count the number of times that these punctuation marks occur in a body of text: , : ; . ! - ' " ? / \ I am using this piece to ferret out the commas: numcommas ... read »