Paraming ColdFusion XML Documents With CFParam

Posted May 4, 2009 at 9:00 AM

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:

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

  • <!--- 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.

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Permalink  |  Other Searches  |  Print Page




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

Reader Comments

May 4, 2009 at 9:20 AM // reply »
45 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 »
55 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 »
6,516 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 »
40 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 »
40 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 »
6,516 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 Comment  |  Ask Ben

Recent Blog Comments
Nov 20, 2009 at 11:32 PM
Five Months Without Hungarian Notation And I'm Loving It
I've used headless camel case for years for not only ColdFusion variables, but also SQL tables and fields... pretty much everything involving code. I also subscribe to the "don't abbreviate and clea ... read »
Nov 20, 2009 at 11:00 PM
Five Months Without Hungarian Notation And I'm Loving It
@Marcel, Yeah, I always err on the side of longer but more readable variable names. As for the camel casing of CF methods and the headless camel casing of custom items, I get around this by always ... read »
Nov 20, 2009 at 10:56 PM
Five Months Without Hungarian Notation And I'm Loving It
I use the following and love it: my.namespace.MyComponents.functionMethodsOrUDF() CONSTANT_VALUES_OR_PROPERTIES One thing I always try is to CamelCaseBuiltInColdFusionFunctions() so others can tell ... read »
Nov 20, 2009 at 5:38 PM
Learning ColdFusion 8: CFImage Part I - Reading And Writing Images
Hi Ben, Great article. I've been looking around to see if ColdFusion image engine can programatically create the following "wrap around" effect: http://www.creativepro.com/article/photoshop-s-she ... read »
Nov 20, 2009 at 5:35 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Dave: I talked to Gert he suggested: <cfhttp method="get" url="http://{some cf website}" result="stuff" addtoken="yes" /> Note the addition of cfhttp attribute addtoken. That should persist y ... read »
Nov 20, 2009 at 5:23 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Todd, Ahh, gotcha, yeah that makes sense. ... read »
Nov 20, 2009 at 5:17 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
Ben, sorry if I didn't make this clear. You can make it work like that if you want, just put <cfset session.foo = 1> (and <cfset application.foo = 1>) in your OnRequestStart() and it reve ... read »