FeedPing test for Mango

Sorry for the noise. This is a test of the FeedPing plugin for Mango Blog. Just making sure it shows up at Adobe Feeds.

0 comments | Posted by Daniel Short on Feb 12, 2009 at 2:55 PM | Categories: ColdFusion -

More ColdFusion is Dead Stuff

Very relevant search results from Mr. JohnB...

JohnBs personal blog » Blog Archive » is dead

(Via ColdFusionBloggers.org.)

0 comments | Posted by Daniel Short on Feb 12, 2009 at 2:38 PM | Categories: ColdFusion -

XMLSearch and empty arrays with namespaces

I ran into an odd issue today and I'm documenting it here for my own future knowledge. When searching an XML document with defined namespaces on elements, XMLSearch wasn't returning any results. Take the following example: Dan Short 5 Angela Buraglia 10 The result of this is unexciting... XPathFirstRun.png The array *should* have all of the results from my person search. Unfortunately the namespace is mucking everything up... A little Google searching got me to a post from Jeremy Gibbens showing how to get around the namespace issue. You need to search by the local name of the node instead, like so: This gives a much more satisfying result: XMLPathSecondRound.png Have fun searching your XML!
3 comments | Posted by Daniel Short on Feb 12, 2009 at 1:29 PM | Categories: ColdFusion -