<?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 for Dan&#039;s Drivelings</title>
	<atom:link href="http://www.tntechnohermit.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tntechnohermit.com</link>
	<description>Random Thoughts of a Techno-Hermit</description>
	<lastBuildDate>Fri, 10 Feb 2012 15:08:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Embracing &#8220;New&#8221; in ColdFusion 9 by Bilal</title>
		<link>http://www.tntechnohermit.com/2010/04/16/embracing-new-in-coldfusion-9/comment-page-1/#comment-1888</link>
		<dc:creator>Bilal</dc:creator>
		<pubDate>Fri, 10 Feb 2012 15:08:43 +0000</pubDate>
		<guid isPermaLink="false">http://dan.skaggsfamily.ws/?p=395#comment-1888</guid>
		<description>You can call new in this way too which is pretty interesting to allow dynamic determination of components at runtime:

Team = new &quot;#prefix#.model.#module#.Team&quot;()</description>
		<content:encoded><![CDATA[<p>You can call new in this way too which is pretty interesting to allow dynamic determination of components at runtime:</p>
<p>Team = new &#8220;#prefix#.model.#module#.Team&#8221;()</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cool ColdFusion and Subversion integration by Dan Skaggs</title>
		<link>http://www.tntechnohermit.com/2007/12/05/cool-coldfusion-and-subversion-integration/comment-page-1/#comment-1887</link>
		<dc:creator>Dan Skaggs</dc:creator>
		<pubDate>Mon, 30 Jan 2012 21:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://dan.skaggsfamily.ws/2007/12/05/cool-coldfusion-and-subversion-integration/#comment-1887</guid>
		<description>Steve, I&#039;m not a customer of CVSDude (now called Codesion) any longer so I can&#039;t comment if the kind of integration will even work now. If it does, then the only thing you should have to change is the path to the SVN executable in the name attribute for the cfexecute tag and the path to the working copy you wish to update in the arguments attribute.</description>
		<content:encoded><![CDATA[<p>Steve, I&#8217;m not a customer of CVSDude (now called Codesion) any longer so I can&#8217;t comment if the kind of integration will even work now. If it does, then the only thing you should have to change is the path to the SVN executable in the name attribute for the cfexecute tag and the path to the working copy you wish to update in the arguments attribute.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cool ColdFusion and Subversion integration by Steve</title>
		<link>http://www.tntechnohermit.com/2007/12/05/cool-coldfusion-and-subversion-integration/comment-page-1/#comment-1886</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Mon, 30 Jan 2012 18:49:29 +0000</pubDate>
		<guid isPermaLink="false">http://dan.skaggsfamily.ws/2007/12/05/cool-coldfusion-and-subversion-integration/#comment-1886</guid>
		<description>Dan, very interesting --  how would this change for a windows 2003 install of svn?</description>
		<content:encoded><![CDATA[<p>Dan, very interesting &#8212;  how would this change for a windows 2003 install of svn?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Returning ColdFusion 9 ORM objects with JSON by Honey</title>
		<link>http://www.tntechnohermit.com/2010/07/19/returning-coldfusion-9-orm-objects-with-json/comment-page-1/#comment-1885</link>
		<dc:creator>Honey</dc:creator>
		<pubDate>Wed, 18 Jan 2012 21:50:13 +0000</pubDate>
		<guid isPermaLink="false">http://dan.skaggsfamily.ws/?p=413#comment-1885</guid>
		<description>&lt;a href=&quot;#comment-762&quot; rel=&quot;nofollow&quot;&gt;@Erik &lt;/a&gt; I had the same problem and updating to 9.0.2 fixed it. Yay!</description>
		<content:encoded><![CDATA[<p><a href="#comment-762" rel="nofollow">@Erik </a> I had the same problem and updating to 9.0.2 fixed it. Yay!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Returning ColdFusion 9 ORM objects with JSON by Jared Shields</title>
		<link>http://www.tntechnohermit.com/2010/07/19/returning-coldfusion-9-orm-objects-with-json/comment-page-1/#comment-1878</link>
		<dc:creator>Jared Shields</dc:creator>
		<pubDate>Mon, 31 Oct 2011 13:39:03 +0000</pubDate>
		<guid isPermaLink="false">http://dan.skaggsfamily.ws/?p=413#comment-1878</guid>
		<description>I found the same issue.... What&#039;s happening is that Adobe fixed a prior bug that caused infinite recursion when serializing persistent entities.  This was due to the bi-directional nature of common persistent entities.  The way they did this was by creating a list of class names for the objects that have been serialized (as it&#039;s serializing)... So when an object is in the list more than twice, it stops serializing it.... and returns an empty object instead....  This is a HUGE bug in CF.

Im not sure if I&#039;ll be making my fix for it directly in the Java source (albeit, not the legal way of doing it), or unfortunately having to do it all in CF (certainly a MUCH slower way of going about it)....

Ugh.</description>
		<content:encoded><![CDATA[<p>I found the same issue&#8230;. What&#8217;s happening is that Adobe fixed a prior bug that caused infinite recursion when serializing persistent entities.  This was due to the bi-directional nature of common persistent entities.  The way they did this was by creating a list of class names for the objects that have been serialized (as it&#8217;s serializing)&#8230; So when an object is in the list more than twice, it stops serializing it&#8230;. and returns an empty object instead&#8230;.  This is a HUGE bug in CF.</p>
<p>Im not sure if I&#8217;ll be making my fix for it directly in the Java source (albeit, not the legal way of doing it), or unfortunately having to do it all in CF (certainly a MUCH slower way of going about it)&#8230;.</p>
<p>Ugh.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Embracing &#8220;New&#8221; in ColdFusion 9 by William Broadhead</title>
		<link>http://www.tntechnohermit.com/2010/04/16/embracing-new-in-coldfusion-9/comment-page-1/#comment-1875</link>
		<dc:creator>William Broadhead</dc:creator>
		<pubDate>Sat, 10 Sep 2011 03:53:46 +0000</pubDate>
		<guid isPermaLink="false">http://dan.skaggsfamily.ws/?p=395#comment-1875</guid>
		<description>@Ed A, et al: Yes, no method overloading, but argumentCollection overload all you want.
And you can artificially method overload.. sort of. Let&#039;s say you arg overload  init() or some other Master Business function. You can of course check the arguments passed in and if a certain signature is there, your init() or MBFN() can call other helper methods and just pass along all the arguments in the argumentCollection.... Not quite the same, but pretty close in terms of functionality...</description>
		<content:encoded><![CDATA[<p>@Ed A, et al: Yes, no method overloading, but argumentCollection overload all you want.<br />
And you can artificially method overload.. sort of. Let&#8217;s say you arg overload  init() or some other Master Business function. You can of course check the arguments passed in and if a certain signature is there, your init() or MBFN() can call other helper methods and just pass along all the arguments in the argumentCollection&#8230;. Not quite the same, but pretty close in terms of functionality&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Embracing &#8220;New&#8221; in ColdFusion 9 by Rolando</title>
		<link>http://www.tntechnohermit.com/2010/04/16/embracing-new-in-coldfusion-9/comment-page-1/#comment-1866</link>
		<dc:creator>Rolando</dc:creator>
		<pubDate>Tue, 26 Jul 2011 18:40:23 +0000</pubDate>
		<guid isPermaLink="false">http://dan.skaggsfamily.ws/?p=395#comment-1866</guid>
		<description>&lt;a href=&quot;#comment-1529&quot; rel=&quot;nofollow&quot;&gt;@Ed A &lt;/a&gt; 
I know this is an old post, but just to clarify. While CF does not support method overloading, it does support optional parameters. So you can still have a single method that can be called with different parameters as you suggested: init() or init(a,b,c).</description>
		<content:encoded><![CDATA[<p><a href="#comment-1529" rel="nofollow">@Ed A </a><br />
I know this is an old post, but just to clarify. While CF does not support method overloading, it does support optional parameters. So you can still have a single method that can be called with different parameters as you suggested: init() or init(a,b,c).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I turned 40 yesterday&#8230;Here&#8217;s to the 2nd half by Ben Nadel</title>
		<link>http://www.tntechnohermit.com/2011/07/08/i-turned-40-yesterday-heres-to-the-2nd-half/comment-page-1/#comment-1865</link>
		<dc:creator>Ben Nadel</dc:creator>
		<pubDate>Mon, 11 Jul 2011 15:02:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.tntechnohermit.com/?p=541#comment-1865</guid>
		<description>Happy Birthday!  :)</description>
		<content:encoded><![CDATA[<p>Happy Birthday!  :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I turned 40 yesterday&#8230;Here&#8217;s to the 2nd half by Phillip Senn</title>
		<link>http://www.tntechnohermit.com/2011/07/08/i-turned-40-yesterday-heres-to-the-2nd-half/comment-page-1/#comment-1864</link>
		<dc:creator>Phillip Senn</dc:creator>
		<pubDate>Sat, 09 Jul 2011 16:02:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.tntechnohermit.com/?p=541#comment-1864</guid>
		<description>Life begins at 40!
40 is the new 30!
JavaScript is the new BASICA!</description>
		<content:encoded><![CDATA[<p>Life begins at 40!<br />
40 is the new 30!<br />
JavaScript is the new BASICA!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automatically encrypting and decrypting data with ColdFusion ORM and annotations by Dan Skaggs</title>
		<link>http://www.tntechnohermit.com/2011/04/04/automatically-encrypting-and-decrypting-data-with-coldfusion-orm-and-annotations/comment-page-1/#comment-1856</link>
		<dc:creator>Dan Skaggs</dc:creator>
		<pubDate>Fri, 08 Apr 2011 21:18:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.tntechnohermit.com/?p=525#comment-1856</guid>
		<description>Thanks John. That bug in 9.01 makes me really glad I kept up with applying the hotfixes.</description>
		<content:encoded><![CDATA[<p>Thanks John. That bug in 9.01 makes me really glad I kept up with applying the hotfixes.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

