Submit Your Site For Free!

Email Address:
* URL:
*
*Indicates Mandatory Field

Terms & Conditions

Dev Newz
FlashNewz
DevWebPro










Interesting CFTIMER Problem

By Raymond Camden
Expert Author
Article Date: 2007-04-03

A few days ago I was working on an update to ColdFire (mainly support for CFTIMER), when I ran into an interesting problem.

When you use CFTIMER, you have a few options for how to display the timer information.

Those options are inline, outline, comment, and debug.

I wanted to ensure that ColdFire only picked up on timer information that used type=debug.

Turned out I didn't need to worry about it. Internally - ColdFusion didn't record any cftimer call that wasn't type=debug.

But I kept my inline cftimer test in so I could be sure it was acting like I thought it would.

But then ColdFire simply stopped working. I wasn't sure why - but then I realized that ColdFire thought a flush had happened! I had certainly not ran a cfflush (I have a separate test page for that), so I wasn't sure what was wrong.

Turns out that when you use cftimer/type=inline, ColdFusion itself performs a flush! You can see this yourself by running this code:

<cftimer type="inline" label="foo">
</cftimer>

<cfset thread = CreateObject("java", "java.lang.Thread")>
<cfset thread.sleep(5000)>


ColdFusion will quickly display foo, and then execute the sleep. This was also confirmed by a friend at Adobe.

So while obviously this isn't a big huge deal (just one more thing to document for ColdFire), it may bite you if you try to do a cfheader call after a cftimer call. If you do, you will get:
Failed to add HTML header.

ColdFusion was unable to add the header you specified to the output stream. This is probably because you have already used a CFFLUSH tag in your template,or buffered output is turned off
Comments

About the Author:
Raymond Camden, ray@camdenfamily.com
http://ray.camdenfamily.com

Raymond Camden is Vice President of Technology for roundpeg, Inc. A long time ColdFusion user, Raymond has worked on numerous ColdFusion books and is the creator of many of the most popular ColdFusion community web sites. He is an Adobe Community Expert, user group manager, and the proud father of three little bundles of joy.




Newsletter Archive | Article Archive | Submit Article | Advertising Information | About Us | Contact

Dev Newz is an iEntry, Inc.® publication - 1998-2008 All Rights Reserved Privacy Policy and Legal