<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Using Xpath with Coldfusion</title>
	<atom:link href="http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/</link>
	<description>My thoughts on ColdFusion, Flex and other RIA stuff....</description>
	<lastBuildDate>Tue, 07 Feb 2012 10:21:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: anon</title>
		<link>http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/comment-page-1/#comment-3462</link>
		<dc:creator>anon</dc:creator>
		<pubDate>Sat, 28 Nov 2009 22:06:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/#comment-3462</guid>
		<description>Another Xpath engine you might be interested in knowing:

&lt;a href=&quot;http://vtd-xml.sf.net&quot; rel=&quot;nofollow&quot;&gt;http://vtd-xml.sf.net&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Another Xpath engine you might be interested in knowing:</p>
<p><a href="http://vtd-xml.sf.net" rel="nofollow">http://vtd-xml.sf.net</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anuj Gakhar</title>
		<link>http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/comment-page-1/#comment-3208</link>
		<dc:creator>Anuj Gakhar</dc:creator>
		<pubDate>Mon, 09 Mar 2009 13:19:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/#comment-3208</guid>
		<description>@James, The SUM and COUNT are actually specific to CF8 only, as in the comments above.</description>
		<content:encoded><![CDATA[<p>@James, The SUM and COUNT are actually specific to CF8 only, as in the comments above.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: james beuthling</title>
		<link>http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/comment-page-1/#comment-3206</link>
		<dc:creator>james beuthling</dc:creator>
		<pubDate>Sat, 07 Mar 2009 02:39:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/#comment-3206</guid>
		<description>I am having problems with two of tags--
Im not on 8 is this why?
   &lt;!---countBooks = XmlSearch(myXml,&quot;count(catalog/book)&quot;); sumPriceAllBooks = XmlSearch(myXml,&quot;sum(catalog/book/price)&quot;);   --&gt;</description>
		<content:encoded><![CDATA[<p>I am having problems with two of tags&#8211;<br />
Im not on 8 is this why?<br />
   <!---countBooks = XmlSearch(myXml,"count(catalog/book)"); sumPriceAllBooks = XmlSearch(myXml,"sum(catalog/book/price)");   --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: james beuthling</title>
		<link>http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/comment-page-1/#comment-3205</link>
		<dc:creator>james beuthling</dc:creator>
		<pubDate>Sat, 07 Mar 2009 00:38:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/#comment-3205</guid>
		<description>I think the error is the missing semi colons 

11 :  sumPriceAllBooks = XmlSearch(myXml,sum(catalog/book/price)&quot;);

my guess !_! - hey dan</description>
		<content:encoded><![CDATA[<p>I think the error is the missing semi colons </p>
<p>11 :  sumPriceAllBooks = XmlSearch(myXml,sum(catalog/book/price)&#8221;);</p>
<p>my guess !_! &#8211; hey dan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/comment-page-1/#comment-22</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 03 Nov 2007 14:23:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/#comment-22</guid>
		<description>Just found out that we can check whether or not a function is available for querying in XML. 
e.g.
we can do this. 
&lt;cfset isFunction = XmlSearch(myXml, &quot;function-available(&#039;min&#039;)&quot;) /&gt;

This returns a boolean value , in this case its NO, but this answers my question of why the min function was not working. 

I also found out the list of functions that can be used for querying.
http://www.stylusstudio.com/docs/v62/d_xpath15.html#wp1455341

Hope this is helpful.</description>
		<content:encoded><![CDATA[<p>Just found out that we can check whether or not a function is available for querying in XML.<br />
e.g.<br />
we can do this.<br />
&lt;cfset isFunction = XmlSearch(myXml, &#8220;function-available(&#8216;min&#8217;)&#8221;) /&gt;</p>
<p>This returns a boolean value , in this case its NO, but this answers my question of why the min function was not working. </p>
<p>I also found out the list of functions that can be used for querying.<br />
<a href="http://www.stylusstudio.com/docs/v62/d_xpath15.html#wp1455341" rel="nofollow">http://www.stylusstudio.com/docs/v62/d_xpath15.html#wp1455341</a></p>
<p>Hope this is helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/comment-page-1/#comment-19</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 02 Nov 2007 14:15:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/#comment-19</guid>
		<description>Thanks Dan. Do you mind sharing what the error was? and the fix as well :)</description>
		<content:encoded><![CDATA[<p>Thanks Dan. Do you mind sharing what the error was? and the fix as well <img src='http://www.anujgakhar.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Vega</title>
		<link>http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/comment-page-1/#comment-18</link>
		<dc:creator>Dan Vega</dc:creator>
		<pubDate>Fri, 02 Nov 2007 13:46:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/#comment-18</guid>
		<description>Great article, I was unaware of this as well. I found an error while running your example but there is a quick fix. 

 TO </description>
		<content:encoded><![CDATA[<p>Great article, I was unaware of this as well. I found an error while running your example but there is a quick fix. </p>
<p> TO</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/comment-page-1/#comment-17</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 02 Nov 2007 12:39:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/#comment-17</guid>
		<description>hmm..... I couldnt get the min() function to work either. Not sure if that is not supported or something I was doing wrong. It just keeps saying &quot;function min not found&quot; .</description>
		<content:encoded><![CDATA[<p>hmm&#8230;.. I couldnt get the min() function to work either. Not sure if that is not supported or something I was doing wrong. It just keeps saying &#8220;function min not found&#8221; .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Nadel</title>
		<link>http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/comment-page-1/#comment-16</link>
		<dc:creator>Ben Nadel</dc:creator>
		<pubDate>Fri, 02 Nov 2007 12:24:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/#comment-16</guid>
		<description>Looking at the live docs, it looks like non-nodelist support was only added in CF8. Also, I love the W3Schools site.</description>
		<content:encoded><![CDATA[<p>Looking at the live docs, it looks like non-nodelist support was only added in CF8. Also, I love the W3Schools site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/comment-page-1/#comment-15</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 02 Nov 2007 12:14:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2007/10/31/using-xpath-with-coldfusion/#comment-15</guid>
		<description>Thats interesting. When I was trying this code, I was using Coldfusion 8 as well. I am gonna find out why they dont work in CF7.</description>
		<content:encoded><![CDATA[<p>Thats interesting. When I was trying this code, I was using Coldfusion 8 as well. I am gonna find out why they dont work in CF7.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

