<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>WebDH blog - RSS</title>
			<link>http://blog.webdh.com/index.cfm</link>
			<description>This is Troy&apos;s blog for WebDH.com LLC.</description>
			<language>en-us</language>
			<pubDate>Mon, 06 Sep 2010 13:08:09 -0700</pubDate>
			<lastBuildDate>Wed, 06 Sep 2006 10:19:00 -0700</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>webdh.com@gmail.com</managingEditor>
			<webMaster>webdh.com@gmail.com</webMaster>
			
			<item>
				<title>Consuming Flickr RSS feed using ColdFusion</title>
				<link>http://blog.webdh.com/index.cfm/2006/9/6/Consuming-Flickr-RSS-feed-using-ColdFusion-MX</link>
				<description>
				
				The following code will make a http request for a Flickr RSS feed, and output the results. You may want to cfdump the XMLContent variable to see what other values you can use from the feed. Enjoy...

&lt;code&gt;
&lt;cfhttp url=&quot;http://api.flickr.com/services/feeds/groups_pool.gne?id=77561358@N00&amp;format=rss_200&quot; method=&quot;GET&quot;&gt;&lt;/cfhttp&gt;
&lt;cfscript&gt;
XMLContent = trim(cfhttp.filecontent);
XMLContent = XMLParse(XMLContent);
&lt;/cfscript&gt;
&lt;cfloop from=&quot;1&quot; to=&quot;#ArrayLen(XMLContent.rss.channel.item)#&quot; index=&quot;idx&quot;&gt;
&lt;cfoutput&gt;
Link to Flickr: &lt;a href=&quot;#XMLContent.rss.channel.item[idx].link.xmlText#&quot;&gt;#XMLContent.rss.channel.item[idx].title.xmlText#&lt;/a&gt;&lt;BR&gt;
Image: &lt;img src=&apos;#XMLContent.rss.channel.item[idx][&quot;media:thumbnail&quot;].xmlattributes.url#&apos;&gt;&lt;BR&gt;
Author: #XMLContent.rss.channel.item[idx].author.xmlText#&lt;BR&gt;
Date: #XMLContent.rss.channel.item[idx].pubDate.xmlText#
&lt;/cfoutput&gt;
&lt;hr&gt;
&lt;/cfloop&gt;
&lt;/code&gt;

Here is a &lt;a href=&quot;http://blog.webdh.com/demos/20060906.cfm&quot; target=&quot;_blank&quot;&gt;demo&lt;/a&gt; of this in action. 
				</description>
				
				<category>ColdFusion</category>				
				
				<category>RSS</category>				
				
				<pubDate>Wed, 06 Sep 2006 10:19:00 -0700</pubDate>
				<guid>http://blog.webdh.com/index.cfm/2006/9/6/Consuming-Flickr-RSS-feed-using-ColdFusion-MX</guid>
				
			</item>
			</channel></rss>