Paraming ColdFusion XML Documents With CFParam

Posted May 4, 2009 at 9:00 AM by Ben Nadel

Tags: ColdFusion

The other day, I was updating some old code that interacted with an XML web service. The code in question was expecting a certain XML structure to be returned, but the API had changed (or had never worked properly - I didn't write the original), and started erroring out. The problem was that XML response did not contain all the nodes that were expected in the calling code. As I was not familiar with the API, I figured the fastest way to karate chop the situation was simply to param the XML nodes if they did not exist.

But, how to do that easily? For fun, not really expecting it to work, I tried using the CFParam tag. And, much to my surprise, it totally worked! As with any CFParam tag, there is going to be the overhead of creating values that might not be used; but, in a pinch, this was the perfect solution.

To demonstrate this concept, I put this demo together:

  • <!--- Create an XML document. --->
  • <cfxml variable="xmlGirl">
  •  
  • <girl>
  • <name>Libby</name>
  • <height>5'7"</height>
  • </girl>
  •  
  • </cfxml>
  •  
  •  
  • <!---
  • Param nodes in the XML document that we expect to exist.
  • We can do this to make sure an XML response is always
  • presented in uniformity.
  • --->
  • <cfparam
  • name="xmlGirl.girl.hair"
  • type="xml"
  • default="#XmlElemNew( xmlGirl, 'hair' )#"
  • />
  •  
  •  
  • <!--- Output new XML document structure. --->
  • <cfdump
  • var="#xmlGirl#"
  • label="XML After CFParam"
  • />

Notice that the original XML document does not have a "Hair" node. The Hair nodes gets paramed using CFParam and the XmlElemNew() function. And, running the above code, we get the following CFDump output:

 
 
 
 
 
 
ColdFusion XML Document Has New Nodes After CFParam Tag Param'd Xml Node. 
 
 
 

As you can see, the Hair node was successfully paramed in the target ColdFusion XML document. Cool stuff! I think with a little more elbow grease, it would be easy to make a function that params an entire XML document to create a unified API response. There would be a significant overhead of course; but, the overhead might be worth not having to deal with a bunch of conditional checks within the XML processing. Another blog post perhaps?

NOTE: The CFParam tag will work with both dot-notation and array-notation (ex. xmlGirl.girl[ 'hair' ]) when working with XML documents.




Reader Comments

May 4, 2009 at 9:20 AM // reply »
48 Comments

Ben - does this handle multiple nodes? In other words - if you had n girl nodes would it add a <hair> child to each node? I don't mess with XML as much as I should so sorry if that's a dumb question ;)


May 4, 2009 at 9:28 AM // reply »
65 Comments

This is kind of interesting. I'm not sure I would have tried that myself considering I usually keep my CFParam's at the top of my pages.

I know you've done a boatload of posts on xml and thought you already had a different way of dealing with missing nodes though.


May 4, 2009 at 10:01 AM // reply »
10,743 Comments

@Todd,

I believe it would only param the first child. I believe that when you use the pseudo node sets (using named dot notation instead of the XmlChildren collection), it treats the dot as the first node in that given set; as such, I think even if there were multiple Girl nodes, it would only work on the first one.

If you needed to param multiple nodes, I bet you can use the array notation:

<cfparam name="xmlGirl.girl[ 1 ].hair" ... />

CFParam should work that way, assuming that it is compatible with the way XML nodes are inserted into the document.

... Hmm, you just gave me an idea! Thanks :)

@Steve,

I haven't had to deal with non-standard API responses much. Also, I would normally put CFIF statements in my processing. But, since I was not familiar with the API (I was updating someone else's old code), I thought figured this would be safer that CFIF statements.


May 4, 2009 at 10:02 AM // reply »
45 Comments

@todd: Nope it only does the first node, you would have to loop over each <girl> node I guess.


May 4, 2009 at 10:07 AM // reply »
45 Comments

Ben beat me to it! I tested it as well, and you can just use the array notation. The XML document would need a <girls> root node though of course :)


May 4, 2009 at 10:28 AM // reply »
10,743 Comments

@Justin,

Great minds think alike :D

@Todd,

Your question gave me an idea: because XML nodes are inserted by copy, not by reference, we can minimize the CFParam overhead by factoring out new node creation if we need to param nodes over a collection of elements:

http://www.bennadel.com/index.cfm?dax=blog:1579.view

Thanks!


Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
InVision App - Prototyping Made Beautiful With Prototyping Tools Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
May 16, 2012 at 8:18 PM
Best Of ColdFusion 10 Contest Entry - HTML Email Utility
Just found this, looks good! I'm trying to run it on local, it's the 64bit version and I'm experiencing horrible lag. On average the generate.cfm processes the content change in 60-90 seconds. I've ... read »
May 16, 2012 at 6:40 PM
Maintaining Sessions Across Multiple ColdFusion CFHttp Requests
I am trying to integrate this CFHTTPsession into an application that will log into zeekrewards.com to post ads and I am not having any luck. The code works perfectly for logging into other websites, ... read »
May 16, 2012 at 2:44 PM
Creating A Sometimes-Fixed-Position Element With jQuery
Thank you, very useful technique! Worked like a charm. ... read »
May 16, 2012 at 1:58 PM
Movies As A Religious Experience
Acting can, in a way, ruin the movie-goer's experience. I used to be able to get so caught up in movies and their plots, and totally engaged. But lately, I haven't been able to as much with a lot o ... read »
May 16, 2012 at 1:52 PM
The Science Of Optimal Post-Exercise Nutrition
children of this age eat very less vegetables so u can opt for salads they will like it also carrot ,cucumber,onion and as far as pulses are concerned u can boil them ,give him along with mashed rice ... read »
May 16, 2012 at 1:34 PM
Strange ColdFusion JRUN Stack Overflow Error
Hey, Recently I updated my jrun4 using the latest updater 7 and now i am having memory issues :(:(:( any help is appreciated ... read »
May 16, 2012 at 9:56 AM
ColdFusion 10 Beta, Apache Tomcat, And Symbolic Links On Mac OSX
Hi, Now that ColdFusion 10 is out I have stumbled over this as well and I cannot figure out the proper solution. We're running virtual hosts via Apache2; the ColdFusion-applications store their fil ... read »
May 15, 2012 at 6:03 PM
Movies As A Religious Experience
@Ben, I don't know whether you'd consider this a religious observation, but it seems to me, in a sense, movies multiply how many lives we get to have. Each movie is like a little extra life we get ... read »