CGI.hot_n_sexy Does Not Throw A ColdFusion Error

Posted October 24, 2006 at 10:40 AM

Tags: ColdFusion

My co-worker was going through some of my code and spotted an error that I had made when using a CGI variable. I had misspelled the key "script_name". The reason that I had not caught it was because ColdFusion did not throw any error. Strange. When I did some more testing on this, it seems that you can basically access any key in CGI and will not throw an error:

  • <!--- Access invalid key. --->
  • <cfdump var="#CGI.hot_n_sexy#" />

Works totally fine. Returns an empty string (probably because Java is returning a NULL value).

I know this sort of thing usually doesn't work, but I tested it in another scope:

  • <!--- Access invalid key. --->
  • <cfdump var="#URL.hot_n_sexy#" />

Ok, this throws the error:

Element HOT_N_SEXY is undefined in URL.

Now, both of these are ColdFusion scopes, so I am curious as to why one throws an error and one does not. To investigate, I dumped out the class chain that makes up the CGI and the URL scopes:

  • <!--- Output CGI class chain. --->
  • CGI:
  • #CGI.GetClass().GetName()#
  • #CGI.GetClass().GetSuperClass().GetName()#
  • #CGI.GetClass().GetSuperClass().GetSuperClass().GetName()#
  •  
  • <!--- Output the URL class chain. --->
  • URL:
  • #URL.GetClass().GetName()#
  • #URL.GetClass().GetSuperClass().GetName()#
  • #URL.GetClass().GetSuperClass().GetSuperClass().GetName()#
  • #URL.GetClass().GetSuperClass().GetSuperClass().GetSuperClass().GetName()#

This gives us the output:

CGI:
coldfusion.runtime.CgiScope
coldfusion.runtime.Scope
java.util.AbstractMap

URL:
coldfusion.filter.UrlScope
coldfusion.runtime.LocalScope
coldfusion.runtime.Scope
java.util.AbstractMap

As you can see, both ColdFusion scope ultimately extend the AbstractMap class. If you look at the Get() method of the java.util.AbstractMap, you will see that it can either return a null value or thrown an error depending on wether the Map allows null values. The ColdFusion wrappers (that extends the AbstractMap) must determine wether null values are allowed.

And just to make sure I am not going crazy, I ran the ContainsKey() method on both the URL and the CGI scopes to see if the invalid key shows up as existing:

  • <!--- Check CGI key. --->
  • #CGI.ContainsKey( JavaCast( "string", "hot_n_sexy" ) )#
  •  
  • <!--- Check URL key. --->
  • #URL.ContainsKey( JavaCast( "string", "hot_n_sexy" ) )#

This gives us:

NO
NO

So, it seems that neither scopes have the key (which we pretty much knew already), but apparently, the coldfusion.runtime.CgiScope class allows NULL entries while coldfusion.filter.UrlScope does not.



Reader Comments

Oct 24, 2006 at 12:30 PM // reply »
153 Comments

I asked someone about this a few years ago at one of the CF Dev Cons. IIRC, it's because they found out that a lot of people were relying on CGI variables that might or might not exist. Back in the olden days of the intarweb, not all browsers sent things like User-Agent headers and Host headers and the like. And yet, a ton of code proliferated that relied on CGI.HTTPUSERAGENT and CGI.HTTP_HOST. The Dev told me that it was deemed better that the scripts found empty values than blew up altogether.

A contradictory story that I heard, one which I am more likely to believe, was that older versions of some web server APIs (I think maybe NSAPI? or Apache?) didn't allow you to definitively test for whether or not a CGI variable (thus, really, an environment variable) actually existed -- it always returned an empty string if it didn't exist. Thus, for compatability, all implementations needed to emulate that behavior.

I also hazily remember something back from the 3.x or 4.x days about it being "too expensive per request" to populate the CGI variables, and thus they weren't populated until you first tried to access them. Maybe this has something to do with it?


Oct 24, 2006 at 12:37 PM // reply »
8,824 Comments

Rick,

Thanks for the input. I wonder if there is a way to set a flag that will force it to throw errors. Seems like a strange thing to allow happen these days.


Oct 24, 2006 at 1:36 PM // reply »
6 Comments

It's still relevant these days, sadly, due to differences between web servers in what variables they provide - but I totally agree, CF could handle this better in the borderline cases. I had a run-in with this last year, relating to the different ways webserver handle redirects:

http://instantbadger.blogspot.com/2005/05/apache-404-cgi-weirdness.html


Oct 24, 2006 at 2:06 PM // reply »
127 Comments

Also, custom header information can be applied by custom filters run within the web server--which is why the CGI scope was designed to return an empty string if the key isn't explicitly defined.

One reason I don't rely on the cgi.script_name is that not all web servers return it. I really try to avoid using the CGI scope when at all possible.


Oct 24, 2006 at 2:07 PM // reply »
8,824 Comments

Dan,

I happen to love the CGI.script_name varible. How do you code without it? Is there something that you use inplace of it?


Oct 24, 2006 at 4:03 PM // reply »
1 Comments

Instead of using cgi.script_name, you can generally use getbasetemplatepath() and/or getcurrenttemplatepath(). Those are ColdFusion functions relating to .cfm file names.


Oct 24, 2006 at 4:05 PM // reply »
8,824 Comments

Nat,

The only issue with that is that those provide server-side paths. CGI.script_name provides a url-path.


Jun 23, 2008 at 2:46 AM // reply »
1 Comments

I Just Bookmarked Your Site,


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:

Formatting: <strong>bold</strong> <em>italic<em>







  • Help Wanted - Find Your Next ColdFusion Job
Recent Blog Comments
Sep 5, 2010 at 6:35 PM
Muscle: Confessions Of An Unlikely Bodybuilder By Samuel Wilson Fussell
@Ben, Certainly will/ Thanks Sean ... read »
Sep 5, 2010 at 6:26 PM
Experimenting With HTML5's Cache Manifest For Offline Web Applications
@Ben, Yes, I am using Firefox Portable. At the moment I run a portable web server on the stick which holds and serves all files. The good thing is, I can run PHP pages on the stick to do requests to ... read »
Sep 5, 2010 at 5:05 PM
Ask Ben: Finding XML Nodes That Have Children With The Given Case-Insensitive Phrase
@Murray, Good point on the clarification. ... read »
Sep 5, 2010 at 4:40 PM
Ask Ben: Finding XML Nodes That Have Children With The Given Case-Insensitive Phrase
Actually, for the benefit of anyone reading this who might want to make sense of the question post, the first <td> had a bold tag surrounding the numeral 6. So, the problem was that the xmlSear ... read »
Sep 5, 2010 at 4:35 PM
Ask Ben: Finding XML Nodes That Have Children With The Given Case-Insensitive Phrase
Thanks Ben. Much appreciated. ... read »
Sep 5, 2010 at 3:39 PM
jQuery forEach() Experiment For Branch-Wise Implicit Iteration
@Sereal, Wow - what a super flattering thing to say :) I really appreciate that! I'm so happy that this stuff is providing value for you. ... read »
Sep 5, 2010 at 3:32 PM
Escaping Form Values - Understanding The ColdFusion htmlEditFormat() Life Cycle
@Ben, There's also a performance benefit to escaping on database insert since it only needs to be done ONCE - when inserting. When you escape on output, this needs to be done every time you output ... read »
Sep 5, 2010 at 3:30 PM
XML Building / Parsing / Traversing Speed In ColdFusion
@Don, I've played around with a couple of approaches to dealing with XML documents that are too large to be parsed in one shot. In one, approach, I use Regular Expression to try and parse one tag a ... read »