<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>ColdFusion Pro News</title>
	<link>http://www.coldfusionpronews.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Wed, 23 Apr 2008 14:37:38 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
	<language>en</language>
			<item>
		<title>CFUG Simulcast: cf.Objective() Preview</title>
		<link>http://www.coldfusionpronews.com/2008/04/23/cfug-simulcast-cfobjective-preview/</link>
		<comments>http://www.coldfusionpronews.com/2008/04/23/cfug-simulcast-cfobjective-preview/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 13:59:10 +0000</pubDate>
		<dc:creator>Sean Corfield</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.coldfusionpronews.com/2008/04/23/cfug-simulcast-cfobjective-preview/</guid>
		<description><![CDATA[I figured this event deserves a much broader audience. If you haven&#8217;t attended an Online ColdFusion Meetup event, this would be a good place to start.
  Announcing a new meeting for The Online ColdFusion Meetup Group!
What: &#8220;Cleveland CFUG Simulcast: cf.Objective() Preview&#8221;, with 3 Speakers    
When: Thursday, Apr 24, 6:00pm US EDT [...]]]></description>
			<content:encoded><![CDATA[<p>I figured this event deserves a much broader audience. If you haven&#8217;t attended an Online ColdFusion Meetup event, this would be a good place to start.
<div style="margin-left:15px; margin-right:15px;">  Announcing a new meeting for The Online ColdFusion Meetup Group!</p>
<p><strong>What:</strong> &#8220;Cleveland CFUG Simulcast: cf.Objective() Preview&#8221;, with 3 Speakers    </p>
<p><strong>When:</strong> Thursday, Apr 24, 6:00pm US EDT (GMT-5) (What time is that for you? See this link which shows the time as US EDT and you can choose your city from the list offered to see it in your own time.) </p>
<p><strong>Meeting URL:</strong> <a href="http://experts.acrobat.com/cfmeetup/%20">http://experts.acrobat.com/cfmeetup/</a><br />  <strong>Duration:</strong> Approx. 1 hour<br />  Meeting will be recorded. URL will be posted after meeting at <a href="http://recordings.coldfusionmeetup.com">http://recordings.coldfusionmeetup.com</a>    </p>
<p>We&#8217;re taking a departure for our meeting on Thursday, Apr 24, at 6pm (US EDT), as we&#8217;ll have a special 2 hour event, in our &#8220;Cleveland CFUG Simulcast: cf.Objective() Preview with 3 speakers&#8221;. This is the CF Meetup&#8217;s first experience doing a CF user group simulcast. Please have patience, since it&#8217;s a different environment from our norm, with presenters speaking to a live audience, in addition to being broadcast over the meetup.</p>
<p>This event will be a preview of 3 of many sessions from the cf.objective() conference coming up in May. If you&#8217;re not familiar with this conference the details are below. This preview session will have Ray Camden, Brian Meloche &amp; Todd Sharp, each offering a preview of their presentation (about 30 minutes), to give you some insight into what the conference has to offer. </p>
<p> <a href="http://www.coldfusionpronews.com/2008/04/23/cfug-simulcast-cfobjective-preview/#more-19" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.coldfusionpronews.com/2008/04/23/cfug-simulcast-cfobjective-preview/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CFEasyMock on RIAForge</title>
		<link>http://www.coldfusionpronews.com/2008/04/02/cfeasymock-on-riaforge/</link>
		<comments>http://www.coldfusionpronews.com/2008/04/02/cfeasymock-on-riaforge/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 12:55:00 +0000</pubDate>
		<dc:creator>Sean Corfield</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.coldfusionpronews.com/2008/04/02/cfeasymock-on-riaforge/</guid>
		<description><![CDATA[As a fan of unit testing, I was interested to hear about a new mock object generator project appearing in the CF world.
I&#8217;ve been using Brian Kotek&#8217;s ColdMock for a while and I really like how easy it makes it to test CFCs that depend on several other CFCs - because you can create &#8220;mock&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>As a fan of unit testing, I was interested to hear about a new mock object generator project appearing in the CF world.</p>
<p>I&#8217;ve been using Brian Kotek&#8217;s <a href="http://coldmock.riaforge.org/">ColdMock</a> for a while and I really like how easy it makes it to test CFCs that depend on several other CFCs - because you can create &#8220;mock&#8221; versions of those CFCs on the fly that return specific values. Mock objects are a good way to provide a consistent environment for your CFCs under test, as well as a way to let your CFCs be tested without them affected the &#8220;real&#8221; environment (because you can create a &#8220;mock&#8221; environment which can even include things such as data access objects to fake the whole database layer). </p>
<p>As I blogged recently, I&#8217;ve switched from cfcUnit to <a href="http://mxunit.org/">MXUnit</a> and the mailing list is pretty active. Mike Steele posted that he had ported EasyMock to CFML. My first reaction was &#8220;Have you looked at Brian Kotek&#8217;s ColdMock project?&#8221; and Mike explained that EasyMock isn&#8217;t just about creating simple mock objects but about verifying behavior in those mock objects. </p>
<p>Intrigued, I read about <a href="http://www.easymock.org/">EasyMock</a>, a Java project that targets JUnit, and realized the power of being able to create mock objects that expect to be called in certain ways and can, as part of your unit test, actually verify the calls made on them!</p>
<p>I asked Mike to send me a build and I played with it and liked it a lot, pretty much instantly. I sent him some feedback and very soon I got an updated build that incorporated much of my feedback - and a note saying he was already going in that direction. Nice to find a project where I&#8217;m on the same page as the author!</p>
<p>You can download the latest build from the <a href="http://cfeasymock.riaforge.org/">CFEasyMock</a> project page on RIAForge. It&#8217;s a very simple but very powerful concept that should really help you with your unit testing!</p>
<p> <a href="http://www.coldfusionpronews.com/2008/04/02/cfeasymock-on-riaforge/#more-18" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.coldfusionpronews.com/2008/04/02/cfeasymock-on-riaforge/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Switching From cfcUnit to MXUnit</title>
		<link>http://www.coldfusionpronews.com/2008/03/10/switching-from-cfcunit-to-mxunit/</link>
		<comments>http://www.coldfusionpronews.com/2008/03/10/switching-from-cfcunit-to-mxunit/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 13:10:05 +0000</pubDate>
		<dc:creator>Sean Corfield</dc:creator>
		
		<category><![CDATA[Applications]]></category>

		<guid isPermaLink="false">http://www.coldfusionpronews.com/2008/03/10/switching-from-cfcunit-to-mxunit/</guid>
		<description><![CDATA[As many folks know, I&#8217;ve long been an advocate of Paul Kenney&#8217;s cfcUnit unit testing framework. I felt it offered the most solid code base and the best all-round feature set in a package that was idiomatic for ColdFusion developers. Unfortunately, the website has not been updated in over 18 months and, although a new [...]]]></description>
			<content:encoded><![CDATA[<p>As many folks know, I&#8217;ve long been an advocate of Paul Kenney&#8217;s <a href="http://cfcunit.org/">cfcUnit</a> unit testing framework. I felt it offered the most solid code base and the best all-round feature set in a package that was idiomatic for ColdFusion developers. Unfortunately, the website has not been updated in over 18 months and, although a new build was made available on sourceforge.net a year ago (1.2.0 Beta 1), there has been no progress on integration with Eclipse.</p>
<p>Since unit testing has become an increasingly important part of any project that I work on, I&#8217;ve had to review what else is available. Right now, the best of breed for ColdFusion seems to be <a href="http://mxunit.org/">MXUnit</a>.</p>
<p>The documentation is still somewhat thin, albeit somewhat better than cfcUnit, but it has a rock solid ant integration and a very slick Eclipse plugin, as well as a very convenient way to automatically run any unit tests found within an entire directory tree.</p>
<p> <a href="http://www.coldfusionpronews.com/2008/03/10/switching-from-cfcunit-to-mxunit/#more-17" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.coldfusionpronews.com/2008/03/10/switching-from-cfcunit-to-mxunit/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fusion Authority Quarterly Update Magazine</title>
		<link>http://www.coldfusionpronews.com/2008/02/13/fusion-authority-quarterly-update-magazine/</link>
		<comments>http://www.coldfusionpronews.com/2008/02/13/fusion-authority-quarterly-update-magazine/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 14:34:36 +0000</pubDate>
		<dc:creator>Brajeshwar Oinam</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.coldfusionpronews.com/2008/02/13/fusion-authority-quarterly-update-magazine/</guid>
		<description><![CDATA[The Fusion Authority Quarterly Update (FAQ-U) is a print publication dedicated to collecting the best and most useful technical articles of high interest to ColdFusion developers. Each issue is based on a theme. The journal is designed to be clear, easy to read and highly&#160;informative.
Every quarter, Fusion Authority provide you with the well-written, up-to-date, comprehensive [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.fusionauthority.com/">Fusion Authority</a> Quarterly Update (FAQ-U) is a print publication dedicated to collecting the best and most useful technical articles of high interest to <a href="http://www.adobe.com/products/coldfusion/">ColdFusion</a> developers. Each issue is based on a theme. The journal is designed to be clear, easy to read and highly&nbsp;informative.</p>
<p>Every quarter, Fusion Authority provide you with the well-written, up-to-date, comprehensive articles that you need to be a ColdFusion professional. Each issue is a mini-book of at least 80 pages of content written by experts — <a href="http://corfield.org/">Sean Corfield</a>, <a href="http://www.coldfusionjedi.com/">Raymond Camden</a>, <a href="http://www.houseoffusion.com/">Michael Dinowitz</a>, <a href="http://www.halhelms.com/">Hal Helms</a>, <a href="http://www.web-relevant.com/blogs/cfobjective/">Jared Rypka-Hauer</a>, <a href="http://firemoss.com/">Joe Rinehart</a> and <a href="http://www.mattwoodward.com/blog/">Matt Woodward</a> and many&nbsp;others.</p>
<p><span id="more-771"></span></p>
<p>Personally, I’m not into ColdFusion development but I just loved to keep a tap on top of technologies I’m involved with in a team. ColdFusion developers in our team, however, love the articles which they say, “are well focussed, straight forward and well&nbsp;up-to-date.”</p>
<p>Their latest “ColdFusion 8 Special Edition” is already out, you can sign up for a subscription to the <span class="caps">FAQ</span>-U on their <a href="http://www.fusionauthority.com/quarterly/">Quarterly Page</a>. This issue highlights some new and interesting features of ColdFusion 8. Brian Rinaldi, Ben Nadel, C. Halton Humphrey, Key Smoljak, Brian Meloche have teamed up to give you <strong>What’s Hot? What’s Not?</strong> in ColdFusion&nbsp;8.</p>
<p> <a href="http://www.coldfusionpronews.com/2008/02/13/fusion-authority-quarterly-update-magazine/#more-16" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.coldfusionpronews.com/2008/02/13/fusion-authority-quarterly-update-magazine/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Kotek&#8217;s Transfer Decorator Bean Injector</title>
		<link>http://www.coldfusionpronews.com/2008/01/16/koteks-transfer-decorator-bean-injector/</link>
		<comments>http://www.coldfusionpronews.com/2008/01/16/koteks-transfer-decorator-bean-injector/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 16:14:38 +0000</pubDate>
		<dc:creator>Sean Corfield</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.coldfusionpronews.com/2008/01/16/koteks-transfer-decorator-bean-injector/</guid>
		<description><![CDATA[Brian Kotek has released his Transfer decorator bean injector observer which I&#8217;m very excited about because I just needed this functionality for a client&#8217;s project and had to write a version myself.
Brian&#8217;s is more sophisticated and, hopefully, will be integrated into ColdSpring in due course.
Now I can use his version instead of mine and know [...]]]></description>
			<content:encoded><![CDATA[<p>Brian Kotek has released his <a href="http://www.briankotek.com/blog/index.cfm/2008/1/14/My-Transfer-Decorator-Bean-Injector-Observer-Is-Now-Available">Transfer decorator bean injector observer</a> which I&#8217;m very excited about because I just needed this functionality for a client&#8217;s project and had to write a version myself.</p>
<p>Brian&#8217;s is more sophisticated and, hopefully, will be integrated into ColdSpring in due course.</p>
<p>Now I can use his version instead of mine and know that I&#8217;m using a community-supported resource. </p>
<p>I know Brian Ghidinelli also ran into this issue and had started to write his own as well. </p>
<p>I expect he&#8217;ll switch to Brian Kotek&#8217;s version now.</p>
<p> <a href="http://www.coldfusionpronews.com/2008/01/16/koteks-transfer-decorator-bean-injector/#more-15" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.coldfusionpronews.com/2008/01/16/koteks-transfer-decorator-bean-injector/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adding Error Handling to Your Application</title>
		<link>http://www.coldfusionpronews.com/2008/01/02/adding-error-handling-to-your-application/</link>
		<comments>http://www.coldfusionpronews.com/2008/01/02/adding-error-handling-to-your-application/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 14:14:53 +0000</pubDate>
		<dc:creator>Raymond Camden</dc:creator>
		
		<category><![CDATA[Applications]]></category>

		<guid isPermaLink="false">http://www.coldfusionpronews.com/2008/01/02/adding-error-handling-to-your-application/</guid>
		<description><![CDATA[I&#8217;ve done more than a few posts recently about error handling and robust exception information, so I thought I&#8217;d write up one entry that can serve as a nice guide for folks to bookmark. By using &#8220;Complete&#8221; in the title, I&#8217;ve also virtually assured that I will forget something critical, so please, send suggestions for [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve done more than a few posts recently about error handling and robust exception information, so I thought I&#8217;d write up one entry that can serve as a nice guide for folks to bookmark. By using &#8220;Complete&#8221; in the title, I&#8217;ve also virtually assured that I will forget something critical, so please, send suggestions for what I&#8217;ve missed. Let&#8217;s get started.</p>
<p>What is the point of this guide? Unless you are a perfect code, there is a chance that your ColdFusion application will have errors in it. The question is - what are you doing with your errors? What was the last error that occurred on your site? If I asked you how many errors your site threw yesterday, could you answer with 100% complete accuracy? I&#8217;d be willing to bet most people would say no. Shoot, I know I couldn&#8217;t answer that. So what do we do to help resolve this issue?</p>
<p> <a href="http://www.coldfusionpronews.com/2008/01/02/adding-error-handling-to-your-application/#more-14" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.coldfusionpronews.com/2008/01/02/adding-error-handling-to-your-application/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Randomizing the Display of a Query</title>
		<link>http://www.coldfusionpronews.com/2007/12/04/randomizing-the-display-of-a-query/</link>
		<comments>http://www.coldfusionpronews.com/2007/12/04/randomizing-the-display-of-a-query/#comments</comments>
		<pubDate>Tue, 04 Dec 2007 22:28:11 +0000</pubDate>
		<dc:creator>Raymond Camden</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.coldfusionpronews.com/2007/12/04/randomizing-the-display-of-a-query/</guid>
		<description><![CDATA[Charles asks a pretty common question about randomizing the result of a query:
 I have a simple page that loops a couple queries and randomly issues the question and choices. I have the loop go from 1 to 10; however sense I do not want to have duplicate questions, I did a conditional that does [...]]]></description>
			<content:encoded><![CDATA[<p>Charles asks a pretty common question about randomizing the result of a query:</p>
<blockquote><p> I have a simple page that loops a couple queries and randomly issues the question and choices. I have the loop go from 1 to 10; however sense I do not want to have duplicate questions, I did a conditional that does not allow dups to be shown. In turn, instead of giving me my nice 1-10 quiz, I get random amount of questions. I completely understand why this is happening, but have trouble coming up with a solution.</p></blockquote>
<p> <a href="http://www.coldfusionpronews.com/2007/12/04/randomizing-the-display-of-a-query/#more-13" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.coldfusionpronews.com/2007/12/04/randomizing-the-display-of-a-query/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mixing CFLAYOUT And PDF/Flash</title>
		<link>http://www.coldfusionpronews.com/2007/11/14/mixing-cflayout-and-pdfflash/</link>
		<comments>http://www.coldfusionpronews.com/2007/11/14/mixing-cflayout-and-pdfflash/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 18:00:03 +0000</pubDate>
		<dc:creator>Raymond Camden</dc:creator>
		
		<category><![CDATA[Applications]]></category>

		<guid isPermaLink="false">http://pimp.coldfusionpronews.com/2007/11/14/mixing-cflayout-and-pdfflash/</guid>
		<description><![CDATA[Michael Brennan-White asks:
    I am attempting to create a new RIA app using the new Ajax tools in CF8. Is there a special trick needed to display a FlashPaper or PDF in a cflayoutarea?
    I am calling the report with this link:
    &#60;a href=&#8221;javaScript:ColdFusion.navigate(&#8217;DebtMFReport.pdf&#8217;,'center&#8217;)&#8221;&#62;
Agency Scheduled Payments [...]]]></description>
			<content:encoded><![CDATA[<p>Michael Brennan-White asks:</p>
<blockquote><p>    I am attempting to create a new RIA app using the new Ajax tools in CF8. Is there a special trick needed to display a FlashPaper or PDF in a cflayoutarea?</p>
<p>    I am calling the report with this link:<br />
<br />    &lt;a href=&#8221;javaScript:ColdFusion.navigate(&#8217;DebtMFReport.pdf&#8217;,'center&#8217;)&#8221;&gt;<br />
Agency Scheduled Payments Report&lt;/a&gt;</p>
<p>    All that displays is text like this:<br />
<br />    (freaky stuff here)</p>
<p>    It doesn&#8217;t matter if I am using an existing PDF file or a PDF generated by a cfr file.</p>
<p>    Any suggestions?</p></blockquote>
<p>What you have to remember is that when you run ColdFusion.navigate, the JavaScript will request the remote URL and take the resultant HTML and place it in the container (whether it be cflayout, cfdiv, etc). When you pointed to a binary file, ColdFusion attempted to write out the binary data to the container, which obviously won&#8217;t work well. PDFs can&#8217;t be embedded in a page. They must take over the complete page to work. So you are out of luck.<br />
 <a href="http://www.coldfusionpronews.com/2007/11/14/mixing-cflayout-and-pdfflash/#more-12" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.coldfusionpronews.com/2007/11/14/mixing-cflayout-and-pdfflash/feed/</wfw:commentRss>
		</item>
		<item>
		<title>EXIF Metadata With ColdFusion 8</title>
		<link>http://www.coldfusionpronews.com/2007/10/31/exif-metadata-with-coldfusion-8/</link>
		<comments>http://www.coldfusionpronews.com/2007/10/31/exif-metadata-with-coldfusion-8/#comments</comments>
		<pubDate>Wed, 31 Oct 2007 17:55:54 +0000</pubDate>
		<dc:creator>Pete Freitag</dc:creator>
		
		<category><![CDATA[Applications]]></category>

		<guid isPermaLink="false">http://pimp.coldfusionpronews.com/2007/10/31/exif-metadata-with-coldfusion-8/</guid>
		<description><![CDATA[One example that I&#8217;ve been meaning to post is how to get Image Metadata using the Exchangeable Image File Format or EXIF a using ColdFusion 8.
It&#8217;s actually quite simple, to get a list of all the EXIF tags simply use the ImageGetExifMetaData function.
Here&#8217;s a quick example:
&#60;cfimage action="read" source="#ExpandPath("lobster.jpg")#" name="img"&#62;
&#60;cfset exif = ImageGetEXIFMetaData(img)&#62;
&#60;cfdump var=&#8221;#exif#&#8221;&#62;
Here&#8217;s a screen [...]]]></description>
			<content:encoded><![CDATA[<p>One example that I&#8217;ve been meaning to post is how to get Image Metadata using the Exchangeable Image File Format or EXIF a using ColdFusion 8.</p>
<p>It&#8217;s actually quite simple, to get a list of all the EXIF tags simply use the <code>ImageGetExifMetaData</code> function.</p>
<p>Here&#8217;s a quick example:</p>
<p><code>&lt;cfimage action="read" source="#ExpandPath("lobster.jpg")#" name="img"&gt;<br />
<br />&lt;cfset exif = ImageGetEXIFMetaData(img)&gt;<br />
<br />&lt;cfdump var=&#8221;#exif#&#8221;&gt;</code></p>
<p>Here&#8217;s a screen shot of a CFDUMP of the EXIF Image Metadata.<br />
 <a href="http://www.coldfusionpronews.com/2007/10/31/exif-metadata-with-coldfusion-8/#more-11" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.coldfusionpronews.com/2007/10/31/exif-metadata-with-coldfusion-8/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What You Shouldn&#8217;t Be Doing In ColdFusion</title>
		<link>http://www.coldfusionpronews.com/2007/09/25/what-you-shouldnt-be-doing-in-coldfusion/</link>
		<comments>http://www.coldfusionpronews.com/2007/09/25/what-you-shouldnt-be-doing-in-coldfusion/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 17:52:16 +0000</pubDate>
		<dc:creator>Raymond Camden</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://pimp.coldfusionpronews.com/2007/09/25/what-you-shouldnt-be-doing-in-coldfusion/</guid>
		<description><![CDATA[A few weeks ago I saw an interesting post on Dzone about what you shouldn&#8217;t do in Python. (See the article here.)
This got me thinking about what features/types of code/practices should be avoided in ColdFusion.
Some are obvious - for example, not using deprecated code. Did you know that CFML Reference guide contains a list of [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago I saw an interesting post on <a href="http://www.dzone.com/" class="bluelink">Dzone</a> about what you <i>shouldn&#8217;t </i>do in Python. (See the article <a href="http://plope.com/Members/chrism/now_not_to_write_python" class="bluelink">here</a>.)</p>
<p>This got me thinking about what features/types of code/practices should be avoided in ColdFusion.</p>
<p>Some are obvious - for example, not using deprecated code. Did you know that CFML Reference guide contains a list of deprecated code for both tags and functions? Also listed are obsolete tags and functions. These functions/tags won&#8217;t work at all in ColdFusion 8.</p>
<p>But what else would you add to this list? I do not want to turn this entry into a &#8220;bash CF&#8221; entry (obviously, I love ColdFusion!). If you don&#8217;t like a feature, I don&#8217;t want to hear about it as we all have features we don&#8217;t like. But what things would you caution developers against? Or at least warn them? What tags/functions throw a red flag in your mind when you see the code.<br />
 <a href="http://www.coldfusionpronews.com/2007/09/25/what-you-shouldnt-be-doing-in-coldfusion/#more-10" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.coldfusionpronews.com/2007/09/25/what-you-shouldnt-be-doing-in-coldfusion/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
