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 »
66 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 »
11,241 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 »
11,241 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
Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
May 22, 2013 at 4:43 AM
How Do You Use The ColdFusion CFParam Tag?
'<cfparam>' or 'isDefined()and <cfset>' performs the same task.Is there any difference? ... read »
May 21, 2013 at 7:46 PM
Using Plupload For Drag & Drop File Uploads In ColdFusion
No luck. At least I have uncovered the cause, URLScan 3.1. Here is what I see in the IIS log when a file is over 30mb. 2013-05-21 23:29:05 10.105.45.128 GET /plupload/assets/jquery/jquery-1.8. ... read »
May 21, 2013 at 6:12 PM
Using Plupload For Drag & Drop File Uploads In ColdFusion
Ben, I did not see you after Pete Freitag's Lockdown session at cfObjective but he said that IIS sets file size limits at 30MB by default which just happened to be the threshold for file size when ... read »
May 21, 2013 at 11:51 AM
Ask Ben: Parsing Very Large XML Documents In ColdFusion
Looking at my first ever XML document that I have to parse and put into MS SQL 2000 with CF8. I get it to list the desired Field name, many times over, and have a long list of this field name displa ... read »
May 21, 2013 at 9:25 AM
Turning Off and On Identity Column in SQL Server
you are awesome..i am lucky to get this blog between such a garbage one....Thanks, Prashant ... read »
May 20, 2013 at 4:38 PM
Using A Dynamic Column Name With ValueList() In ColdFusion
@Dana, Your confusion is well founded, since this is a very confusing features. In fact, it ONLY works if you use array notation. Meaning, that this: arrayToList( query[ "columnName" ] ) ... read »
May 20, 2013 at 4:34 PM
Using A Dynamic Column Name With ValueList() In ColdFusion
I was thinking chicken and the egg, I wouldn't have expected it to work in the valuelist going in I guess. Maybe I just need a beer, long day :) ... read »
May 20, 2013 at 4:29 PM
Using A Dynamic Column Name With ValueList() In ColdFusion
@Dana, That's if you're trying to reference a specific row. In this case, we're trying to reference the entire query column as one cohesive value. So, you are correct that if you wanted to output a ... read »
InVision App - Prototyping Made Beautiful With Prototyping Tools