Created
January 7, 2014 15:08
-
-
Save twelverobots/8300652 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cffunction name="onCFCRequest" access="public" returntype="any" output="false"> | |
<cfargument name="cfcname" type="string" /> | |
<cfargument name="method" type="string" /> | |
<cfargument name="args" type="struct" /> | |
<cfset var result = "" /> | |
<cftry> | |
<cfinvoke component="#arguments.cfcname#" method="#arguments.method#" argumentCollection="#arguments.args#" returnvariable="result" /> | |
<cfcatch> | |
<cfdump var="#cfcatch#" abort="true" /> | |
</cfcatch> | |
</cftry> | |
<cfreturn result /> | |
</cffunction> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment