CreateObject() Proxy Via ColdFusion Custom Tag

Posted January 16, 2008 at 9:12 AM

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 »
122 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 »
8,777 Comments

@Jason,

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


Jan 16, 2008 at 10:25 AM // reply »
127 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 »
8,777 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 »
127 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 »
8,777 Comments

@Dan,

You post is quality stuff. Thanks.


Jan 17, 2008 at 9:10 AM // reply »
38 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:

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







  • Help Wanted - Find Your Next ColdFusion Job
Recent Blog Comments
Sep 3, 2010 at 5:48 AM
Scope Behavior When Using CFThread Inside Of ColdFusion Components
Thanks Ben, Excellent article and very precise explanation. Cheers Philip A question on invoking asynchronous save or some task and returning response back to the calling page. Using cfThread is ... read »
Sep 3, 2010 at 3:04 AM
Long Polling Experiment With jQuery And ColdFusion
@Ben, Thank you for your answer. If you are interested in - I solved the problem. It was, as you said, a buffer issue. Now when I'm getting a new request, the first thing I do is I'm sending some fa ... read »
Sep 3, 2010 at 1:29 AM
Using jQuery's SlideUp() and SlideDown() Methods With Bottom-Positioned Elements
Hey Ben, Thanks for clearing this up! Also, is there a way for the container to be open when you first load the page, so that when u click on the link it will slideUp? ... read »
Sep 3, 2010 at 12:29 AM
Bidirectional Data Exchange With ColdFusion's CFThread Tag
Thanks for posting this example, Ben. I plan to put something like this to use. I want to spawn up a thread to insert several records (possibly 1000s) into a database incrementing a counter upon ea ... read »
Sep 2, 2010 at 11:23 PM
Experimenting With HTML5's Cache Manifest For Offline Web Applications
Hi Ben, having checked all articles on Html5's appCache, is there a solution to just update newer files, using the manifest file? I am looking into using application cache to actually have an offline ... read »
Sep 2, 2010 at 3:11 PM
Long Polling Experiment With jQuery And ColdFusion
@Alex, It looks like some of the browsers implement some sort of buffering on the data request. I was definitely finding different behavior across browsers. I want to come back and figure this code ... read »
Sep 2, 2010 at 3:09 PM
Creating Base64-Encoded Data URLs For Images In ColdFusion
@Randall, At the very least, I think Chrome won't be able to close windows unless it opens them up, right? I am not sure. ... read »
Sep 2, 2010 at 2:17 PM
ColdFusion NumberFormat() Exploration
Ben - I have same question as Jim and I think maybe you misread it? I want numbers with non-zero decimal places to display the decimal, but those that have no decimal to display w/o the decimal poin ... read »