<?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"
	>
<channel>
	<title>Comments for Stake Five</title>
	<atom:link href="http://blogs.sanmathi.org/ashwin/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.sanmathi.org/ashwin</link>
	<description>Music, Politics and Code</description>
	<pubDate>Mon, 06 Feb 2012 09:21:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>Comment on Memory-sensitive Caching for CF by Michael Horne</title>
		<link>http://blogs.sanmathi.org/ashwin/2006/07/01/memory-sensitive-caching-for-cf/#comment-78235</link>
		<dc:creator>Michael Horne</dc:creator>
		<pubDate>Thu, 07 Apr 2011 07:27:01 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.sanmathi.org/ashwin/?p=29#comment-78235</guid>
		<description>Thanks for this -  I needed a caching solution that effectively took care of itself and the JVM, and along came SoftReference :-) I've adapted your code and added to it :-)</description>
		<content:encoded><![CDATA[<p>Thanks for this -  I needed a caching solution that effectively took care of itself and the JVM, and along came SoftReference <img src='http://blogs.sanmathi.org/ashwin/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> I&#8217;ve adapted your code and added to it <img src='http://blogs.sanmathi.org/ashwin/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HOWTO: Call CF from the command line by Ahamad</title>
		<link>http://blogs.sanmathi.org/ashwin/2006/09/14/howto-call-cf-from-the-command-line/#comment-18809</link>
		<dc:creator>Ahamad</dc:creator>
		<pubDate>Mon, 25 Aug 2008 14:44:46 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.sanmathi.org/ashwin/?p=48#comment-18809</guid>
		<description>Hi,
I have posted a simple example on onMissingmethod here.

http://cf-examples.net/index.cfm/2008/8/25/onMissingMethod-Example</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I have posted a simple example on onMissingmethod here.</p>
<p><a href="http://cf-examples.net/index.cfm/2008/8/25/onMissingMethod-Example" rel="nofollow">http://cf-examples.net/index.cfm/2008/8/25/onMissingMethod-Example</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Memory-sensitive Caching for CF by John Allen</title>
		<link>http://blogs.sanmathi.org/ashwin/2006/07/01/memory-sensitive-caching-for-cf/#comment-1604</link>
		<dc:creator>John Allen</dc:creator>
		<pubDate>Tue, 10 Jun 2008 00:56:13 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.sanmathi.org/ashwin/?p=29#comment-1604</guid>
		<description>DUDE! THIS SAVES MY DAY/MONTH!!!!
Thank you.
John Allen</description>
		<content:encoded><![CDATA[<p>DUDE! THIS SAVES MY DAY/MONTH!!!!<br />
Thank you.<br />
John Allen</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HOWTO: Call CF from the command line by Javier Julio</title>
		<link>http://blogs.sanmathi.org/ashwin/2006/09/14/howto-call-cf-from-the-command-line/#comment-127</link>
		<dc:creator>Javier Julio</dc:creator>
		<pubDate>Wed, 13 Feb 2008 17:27:35 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.sanmathi.org/ashwin/?p=48#comment-127</guid>
		<description>Unfortunately, it does not work. Sorry I have replied so late. I thought I had made my comment elsewhere. I meant to say "method" in the previous comment by the way instead of "message".

I've set the onMissingMethod function to both remote and public but I'll still get a CF error saying my method was not found.

Is it possible that this could be added in via an updater or maybe the next release of CF? It's a great addition to be able to call CFC methods directly via the URL. I love this CURL example since everyone here at my job uses it to interact with the services we build.</description>
		<content:encoded><![CDATA[<p>Unfortunately, it does not work. Sorry I have replied so late. I thought I had made my comment elsewhere. I meant to say &#8220;method&#8221; in the previous comment by the way instead of &#8220;message&#8221;.</p>
<p>I&#8217;ve set the onMissingMethod function to both remote and public but I&#8217;ll still get a CF error saying my method was not found.</p>
<p>Is it possible that this could be added in via an updater or maybe the next release of CF? It&#8217;s a great addition to be able to call CFC methods directly via the URL. I love this CURL example since everyone here at my job uses it to interact with the services we build.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HOWTO: Call CF from the command line by Ashwin</title>
		<link>http://blogs.sanmathi.org/ashwin/2006/09/14/howto-call-cf-from-the-command-line/#comment-129</link>
		<dc:creator>Ashwin</dc:creator>
		<pubDate>Fri, 18 Jan 2008 23:26:24 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.sanmathi.org/ashwin/?p=48#comment-129</guid>
		<description>Javier - if I remember right, onMissingMethod will work fine, just so long as you provide a method name to invoke via the 'method' attribute on the URL; a plain URL without a method attribute may fail. Try it and do let me know how it works out. Sorry I can't provide a definitive answer - it's been over 6 months since I last looked at the CF source code!</description>
		<content:encoded><![CDATA[<p>Javier - if I remember right, onMissingMethod will work fine, just so long as you provide a method name to invoke via the &#8216;method&#8217; attribute on the URL; a plain URL without a method attribute may fail. Try it and do let me know how it works out. Sorry I can&#8217;t provide a definitive answer - it&#8217;s been over 6 months since I last looked at the CF source code!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HOWTO: Call CF from the command line by Javier Julio</title>
		<link>http://blogs.sanmathi.org/ashwin/2006/09/14/howto-call-cf-from-the-command-line/#comment-128</link>
		<dc:creator>Javier Julio</dc:creator>
		<pubDate>Fri, 18 Jan 2008 21:02:34 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.sanmathi.org/ashwin/?p=48#comment-128</guid>
		<description>@Ashwin

I've set up a sample CFC to test out this feature and it works great. I've noticed that if an Application.cfm or Application.cfc (with onRequestStart) exists those files/functions are called. I was wondering then if onMissingMethod would fire if I did not type in a message in the query string?</description>
		<content:encoded><![CDATA[<p>@Ashwin</p>
<p>I&#8217;ve set up a sample CFC to test out this feature and it works great. I&#8217;ve noticed that if an Application.cfm or Application.cfc (with onRequestStart) exists those files/functions are called. I was wondering then if onMissingMethod would fire if I did not type in a message in the query string?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CF8: Of Star Wars, Layer Cake and CFAJAXPROXY by Waarborg</title>
		<link>http://blogs.sanmathi.org/ashwin/2007/07/03/cf8-of-star-wars-layer-cake-and-cfajaxproxy/#comment-216</link>
		<dc:creator>Waarborg</dc:creator>
		<pubDate>Wed, 16 Jan 2008 02:32:49 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.sanmathi.org/ashwin/2007/07/03/cf8-of-star-wars-layer-cake-and-cfajaxproxy/#comment-216</guid>
		<description>I was looking for some information about interfacing with del.icio.us web services. And I stumbled on this website. I found more info than I need for now, so I bookmarked this page for future reference. Keep up the good work! See you soon.</description>
		<content:encoded><![CDATA[<p>I was looking for some information about interfacing with del.icio.us web services. And I stumbled on this website. I found more info than I need for now, so I bookmarked this page for future reference. Keep up the good work! See you soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why I Like Spry by Ashwin</title>
		<link>http://blogs.sanmathi.org/ashwin/2006/08/03/why-i-like-spry/#comment-85</link>
		<dc:creator>Ashwin</dc:creator>
		<pubDate>Sun, 25 Nov 2007 23:38:48 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.sanmathi.org/ashwin/?p=39#comment-85</guid>
		<description>Depends on what you want to achieve, Michael - I think Spry and the new ColdFusion 8 AJAX tags offer solutions for almost all needs a normal AJAX application will need. However, if you need to customize application behaviour in highly specialized ways (e.g., control particular animations, transparencies, etc.) then something like Dojo, Prototype, or MooTools might be a better choice.</description>
		<content:encoded><![CDATA[<p>Depends on what you want to achieve, Michael - I think Spry and the new ColdFusion 8 AJAX tags offer solutions for almost all needs a normal AJAX application will need. However, if you need to customize application behaviour in highly specialized ways (e.g., control particular animations, transparencies, etc.) then something like Dojo, Prototype, or MooTools might be a better choice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why I Like Spry by michael</title>
		<link>http://blogs.sanmathi.org/ashwin/2006/08/03/why-i-like-spry/#comment-84</link>
		<dc:creator>michael</dc:creator>
		<pubDate>Sun, 25 Nov 2007 23:16:36 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.sanmathi.org/ashwin/?p=39#comment-84</guid>
		<description>so now there is a dojo 1.0 and spry 1.6 do you still think it's a better method ?

 I am looking at both at the current time, Dojo seems to be a little more comprehensive but far more work to get the job done. Spry seems to be a little more straight forward. but I have only been looking at them for a week now.</description>
		<content:encoded><![CDATA[<p>so now there is a dojo 1.0 and spry 1.6 do you still think it&#8217;s a better method ?</p>
<p> I am looking at both at the current time, Dojo seems to be a little more comprehensive but far more work to get the job done. Spry seems to be a little more straight forward. but I have only been looking at them for a week now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New ColdFusion blogs by Ashwin</title>
		<link>http://blogs.sanmathi.org/ashwin/2007/06/01/new-coldfusion-blogs/#comment-187</link>
		<dc:creator>Ashwin</dc:creator>
		<pubDate>Wed, 22 Aug 2007 22:35:46 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.sanmathi.org/ashwin/2007/06/01/new-coldfusion-blogs/#comment-187</guid>
		<description>Admittedly, I have a strong bias... But yes, I think CF8 is definitely worth the upgrade. It is one of the most feature-rich releases of CF ever, with something for just about everyone.</description>
		<content:encoded><![CDATA[<p>Admittedly, I have a strong bias&#8230; But yes, I think CF8 is definitely worth the upgrade. It is one of the most feature-rich releases of CF ever, with something for just about everyone.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

