CreateObject() Proxy Via ColdFusion Custom Tag

Posted January 16, 2008 at 9:12 AM by Ben Nadel

Tags: ColdFusion

I just want to start off by saying that this idea was not mine. I have to give complete credit to Jeff Sanders who contacted me with this suggestion. I happen to think it's a really neat idea.

This idea has to do with the problem of creating ColdFusion components in parallel or parent directories without the use of mapped paths. A while back, I discussed getting around this idea by including a ColdFusion function into the Application.cfc/cfm file. This would create a mixin that leveraged the fact that ColdFusion component paths are relative the executing template, not the compiled page.

This worked, but the fact that it used a mixin always seemed a little less than elegant. Jeff Sanders came up with the idea to take this concept and use a ColdFusion custom tag, rather than a mixin, that could be used from anywhere in the application. To explain, let's use this sample directory structure:

./root/
./root/cfc/
./root/www/

In this structure, our ColdFusion components are going to be stored in the CFC folder; our website is going to be stored in the www folder. In this kind of a scenario, it would ordinarily be impossible to instantiate a component in the CFC directory from a file within the www directory without a mapped path or a mixin. To create a more elegant and portable solution, we can use a ColdFusion custom tag that lives in the root directory:

./root/createcfc.cfm

The CreateCFC.cfm ColdFusion custom tag is extremely simple and acts purely as a proxy to ColdFusion's CreateObject() method:

  • <!--- Kill extra output. --->
  • <cfsilent>
  •  
  • <!--- Param tag attributes. --->
  • <cfparam
  • name="ATTRIBUTES.Component"
  • type="string"
  • />
  •  
  • <cfparam
  • name="ATTRIBUTES.ReturnVariable"
  • type="variablename"
  • />
  •  
  •  
  • <!---
  • Create the ColdFusion component and store it into the
  • requested caller variable.
  • --->
  • <cfset "CALLER.#ATTRIBUTES.ReturnVariable#" = CreateObject(
  • "component",
  • ATTRIBUTES.Component
  • ) />
  •  
  •  
  • <!--- Exit out of tag. --->
  • <cfexit method="exittag" />
  •  
  • </cfsilent>

As you can see, all it takes is the root-relative path to the target component and the return variable into which the instantiated CFC will be stored.

This tag is meant to be invoked using a CFModule tag in which you can supply the path to the target template:

  • <!---
  • Create CFC in parallel directory using ColdFusion
  • custom tag module.
  • --->
  • <cfmodule
  • template="../createcfc.cfm"
  • component="cfc.Test"
  • returnvariable="REQUEST.Test"
  • />
  •  
  •  
  • <!--- Output the Test component message. --->
  • <cfoutput>
  • #REQUEST.Test.Message#
  • </cfoutput>

In a way, this ColdFusion custom tag works much like the front controllers in FuseBox or Model-Glue; all CFC creation is funnelled through this one template. Now, I am not sure you would want to use this all over the place. What you might want to do is create some sort of globally accessible user defined function that creates a kind of second layer proxy to this tag; otherwise, you would have to supply the custom tag template path every time you invoke a component.

Regardless, I thought this was a very cool idea that Jeff came up with.




Reader Comments

Jan 16, 2008 at 9:39 AM // reply »
131 Comments

Actually, I think this has legs. I've often set a request.componentDir variable where I can swap out pathing based on environment.

Maybe in development:

request.componentDir = "../components.";

Then in production, maybe I have a mapping:

request.componentDir = "/componentMapping.";

The proxy solution, however, could potentially remove any need for mappings while at the same time removing the need for environment configs for component locations. I'll have to give it some more thought as well.

Thanks!


Jan 16, 2008 at 9:54 AM // reply »
11,238 Comments

@Jason,

Sounds good. Let me know what you come up with.


Jan 16, 2008 at 10:25 AM // reply »
170 Comments

Interesting idea....

Something else you could do is restructure a bit and do:

/root/
/root/cfc/
/root/cfc/createCFC.cfm
/root/cfc/com
/root/tags/
/roow/www/

You could then use CF 8's ability to create Application mappings for a custom tag path:

application.cfc:

this.customTagPaths = getDirectoryFromPath(getCurrentTemplatePath()) & "..\cfc\," & getDirectoryFromPath(getCurrentTemplatePath()) & "..\tags\;

Now you'd be able to call the <cf_createCFC /> directly within your application.

Heck, you could then even create a UDF that would call the CF Tag for you, so you'd just could do:

createCFC()


Jan 16, 2008 at 10:32 AM // reply »
11,238 Comments

@Dan,

I like it. I gotta play around more with the application specific mappings in CF8. I have to be honest, I used to hate the idea of mappings because it was another "moving part" (ie. talking to server admin) that might break and could be a hassle with portability. However, since CF8 puts mappings into the hands of the developer, my whole outlook on mappings in general might be shifting.


Jan 16, 2008 at 10:46 AM // reply »
170 Comments

@Ben:

First, I just blogged about your concept over at my blog and expanded a bit on my comment:

http://blog.pengoworks.com/index.cfm/2008/1/16/Invoke-CFCs-outside-of-webroot-without-mappings

I agree about issues with mapping--which is why one of the features I always request when Allaire/Macromedia/Adobe would ask is application-level mappings.

As I stated in my blog, the closer I can get my applications to just copy and run, the happier I am. It makes it much easier to migrate code to new servers and if you're trying to sell an application, I think you want to make things as easy as possible to configure.

That's why I was so happy when we finally got a this.mappings and this.customTagPaths variables.

Also, technically using CF8, you could just use the this.mappings to set up a mapping to the /root/cfc/ as well.

However, your technique works well for pre-CF8.


Jan 16, 2008 at 11:08 AM // reply »
11,238 Comments

@Dan,

You post is quality stuff. Thanks.


Jan 17, 2008 at 9:10 AM // reply »
50 Comments

This is good stuff.

I was going to suggest a UDF, but Dan is way ahead of me on that.


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
Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
May 17, 2013 at 7:42 PM
HashKeyCopier - An AngularJS Utility Class For Merging Cached And Live Data
Ben - thanks so much for posting these Angular articles and findings, they've been a huge help towards learning one of the more 'complex' JavaScript frameworks out there (IMO). I have been using Angu ... read »
May 16, 2013 at 5:01 PM
UPDATE: Parsing CSV Data Files In ColdFusion With csvToArray()
Your code was the closest thing I've found to obtaining some direction for converting ISO fields to values that CF can translate properly. Thank you for posting! ... read »
May 15, 2013 at 10:37 PM
Very Simple Pusher And ColdFusion Powered Chat
hi id making plz easy ... read »
May 15, 2013 at 6:07 PM
Making SOAP Web Service Requests With ColdFusion And CFHTTP
Ben, you once again saved my bacon at work. Thank you, thank you, thank you! ... read »
May 15, 2013 at 4:15 PM
What If All User Interface (UI) Data Came In Reports?
@Josh, Thanks! @Ben, I definitely recommend the David West book "Object Thinking" I've been quoting from. It goes deeply into the philosophy and history of OO programming. His breadth ... read »
May 15, 2013 at 11:36 AM
Ask Ben: Print Part Of A Web Page With jQuery
I found this helpfull when you need to keep (refresh) the original parent page after closing the iframe child print dialog (Hoping you're not using a form at this time so it won't submit again): On ... read »
May 14, 2013 at 7:13 PM
What If All User Interface (UI) Data Came In Reports?
@Jonah, If there's any books you'd recommend on the subject of domain modelling, I'd love to hear it. I just downloaded the free PDF of "Domain Driven Design Quickly". Figured I'd give it ... read »
May 14, 2013 at 6:57 PM
The UX Of Prototyping: Low-Fidelity Is The New High-Fidelity
@Phillip, I'm not sure I follow what you mean? Are you saying that you looked at the list of widgets provided by the jQuery UI and let that be your style guide? ... read »
InVision App - Prototyping Made Beautiful With Prototyping Tools