2つの異なるCFCから1つのCFCをインスタンス化しようとすると、ColdFusionは500エラーを返します。CFCの1つをもう1つ拡張させてみましたが、問題は解決しませんでした。これは可能ですか、それとも単に間違ったことをしているだけですか?
<!--- one.cfc --->
<cfcomponent name="FirstCFC">
<cfset this.Tools = createObject('component', 'toolbox').init()>
....
</cfcomponent>
<!--- two.cfc --->
<cfcomponent name="SecondFC">
<cfset this.Tools = createObject('component', 'toolbox').init()>
....
</cfcomponent>
<!--- toolbox.cfc --->
<cfcomponent name="Toolbox">
<cffunction name="init" access="public">
<cfreturn this>
</cffunction>
<cffunction name="someFunc" access="public">
</cffunction>
</cfcomponent>
これが500エラーのスクリーンショットです
これがより「完全な」コードサンプルです