ColdFusion Error Thrown When Application.cfc Has Method Named "Trace"

Posted October 17, 2006 at 8:25 PM by Ben Nadel

Tags: ColdFusion

The following is NOT the error. I am still debugging this and I am about to kill myself with frustration!

This was driiiiiving me crazy! I was testing events in the ColdFusion Application.cfc method when my OnError method kept firing during the OnApplicationEnd event. The error that I was getting was not helpful at in the least:

An exception occurred when invoking a event handler method from Application.cfc The method name is: onApplicationEnd.

I started to use the OnError method to CFDump the error to an html file. This is what I got:


 
 
 

 
CFDump : Application.cfc Error With Trace Method  
 
 
 

The detailed message was:

The method 'onApplicationEnd' could not be found in component.

But, my Application.cfc did IN FACT have an OnApplicationEnd method. Clearly something else was going on. But, how useless is that error? No tag context? It won't even tell me what line the error occurred on? To debug this I started commenting EVERYTHING out until the error went away. Then I started putting code back in. I finally narrowed it down to a method called "Trace". Trace was being invoked by other Application.cfc methods and was writing its arguments to a text file. I started to comment out everything in it until it was just this:

  • <cffunction name="Trace">
  • <cfreturn />
  • </cffunction>

That was throwing an error! WTF right? The only thing I could possibly think of was that "Trace" was some sort of reserved word. So, I renamed it to "EventTrace":

  • <cffunction name="EventTrace">
  • <cfreturn />
  • </cffunction>

And just like that, no more problems. I tried looking in the ColdFusion documentation and saw nothing about this method name being special or reserved in any way. And what's more, you can create a method named "Trace" outside of Application.cfc with out any issue. It seems to be reserved ONLY inside of the Application.cfc component. Crazy huh?



Reader Comments

Oct 17, 2006 at 9:47 PM // reply »
1 Comments

Thats is a very odd error indeed.

Just throwing this in, but I also use a method called "trace" in my application. But actually the trace method definition isn't in the Application.cfc file, I cfinclude it in (mixin style). So that seems to have spared me the same problem, and might also offer you a way around that funky error.


Oct 18, 2006 at 8:32 AM // reply »
10,640 Comments

Jordan,

I was incorrect about what was causing the error. Although maybe the Trace method only complicated things. I have taken it out and I am still getting errors (slightly different). It's driving me CRAZY!!!! ARG!


Oct 18, 2006 at 9:59 AM // reply »
160 Comments

@Ben:

Have you tried stripping out all the logic in the onApplicationEnd?

Also, try dumping the class cache and re-starting your server. Perhaps there's a weird class caching issue occuring w/the Application.cfc.


Jan 15, 2010 at 8:26 AM // reply »
1 Comments

Having same problem in developed CFC as well, although my code clearly defines the method.

Throws this error in CF8:
Error Message: The trace method was not found.
Error Detail: Either there are no methods with the specified method name and argument types, or the trace method is overloaded with argument types that ColdFusion cannot decipher reliably. ColdFusion found 0 methods that matched the provided arguments. If this is a Java object and you verified that the method exists, you may need to use the javacast function to reduce ambiguity.


Jan 16, 2010 at 4:09 PM // reply »
10,640 Comments

@Keef,

Did you have a Trace method?


Jan 28, 2011 at 10:49 AM // reply »
26 Comments

I'm going through the logs of an old application here and finding a similar error. I'm thinking it's because something named a method "get". Yep, just get. And I suspect that's causing problems when once the ColdFusion code is being ran in Java (for a lack of a better description of what happens as CF is written in Java)

"The get method was not found."

"Either there are no methods with the specified method name and argument types, or the get method is overloaded with argument types that ColdFusion cannot decipher reliably. ColdFusion found 0 methods that matched the provided arguments. If this is a Java object and you verified that the method exists, you may need to use the javacast function to reduce ambiguity."

In this case, it may be that the instance of the object doesn't have that method at the time it's being called. I don't know. But as much as I like the flexibility of things being loosely typed I wish CF had more reserved method names and keywords just to make sure things don't get mucked up.


Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
InVision App - Prototyping Made Beautiful With Prototyping Tools Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
Feb 12, 2012 at 3:37 AM
Learning ColdFusion 8: CFImage Part III - Watermarks And Transparency
Hi Ben, Just to ask currently it is placed bottom right corner, if i need to replace the same rendered image on the bottom left side or in the bottom center, how that can be calculated. bottom ce ... read »
Feb 11, 2012 at 9:29 PM
Use jQuery's SlideDown() With Fixed-Width Elements To Prevent Jumping
I can't say how glad I am that I found your post. Thank you very much. ... read »
Feb 10, 2012 at 7:21 PM
jQuery AJAX Strips Script Tags And Inserts Them After Parent-Most Elements
Update! Instead of $(eval(options.insertAfter)).after(data['insertData']); I now use: var ajaxNode = document.createElement('span'); var parent = $(eval(options.insertAfter))[0].parentNode; ... read »
Feb 10, 2012 at 6:18 PM
jQuery AJAX Strips Script Tags And Inserts Them After Parent-Most Elements
encountered this same, what I consider, jQuery bug last week. I'm building a site in which I load some content via AJAX. This content contains Linkedin share button placeholders which Linkedin API ne ... read »
Feb 10, 2012 at 11:30 AM
Cross-Origin Resource Sharing (CORS) AJAX Requests Between jQuery And Node.js
After you understand the concepts here, this is an awesome cheatsheet for enabling CORS in just about anything http://enable-cors.org/ ... read »
JM
Feb 10, 2012 at 9:10 AM
My Safari Browser SQLite Database Hello World Example
@Amy, Here is a very good tutorial on how to use JOIN: http://www.sqltutorial.org/sqljoin-innerjoin.aspx ... read »
Feb 10, 2012 at 4:42 AM
Building A Twitter-Inspired RESTful API Architecture In ColdFusion
This is great, very useful Ben. I spotted a small typo in the api.cgm listing: <cfthrow type="Unauthroized" /> Cheers Stefan ... read »
Feb 9, 2012 at 10:35 PM
CFDirectory Filtering Uses Pipe Character For Multiple Filters (Thanks Steve Withington)
I was wondering if there would be a filter you could apply so that you got everything but what you included in the filter. As in show me all docs that are not a .pdf. ... read »