我的Application.cfc使用OnRequestStart檢查用戶在ColdFusion的網關,用的Application.cfc問題OnRequestStart
<cfif not isDefined("session.auth.isLoggedIn")>
<cfinclude template="loginForm.cfm">
<cfabort>
</cfif>
記錄,這是我的壓延嘗試使用一個網關服務,錯誤出與
Error invoking CFC for gateway watchInboundFiles: null {GATEWAYTYPE={FileWatcher},ORIGINATORID={},CFCMETHOD={onDelete},DATA={{FILENAME={C:\temp\New Text Document.txt},TYPE={DELETE}}},CFCPATH={F:\ColdFusion9\wwwroot\watch_dir.cfc},GATEWAYID={watchInboundFiles}}.
如果我註釋掉OnRequestSTart方法,網關將按預期工作。
別人遇到了這個here之前的解決方案顯然是要
添加一個新的Application.cfc其 延長我的原創,但推翻了 onRequestStart() - 它完美工作 。
那麼我該怎麼做?
是的,那是我一直在尋找的信息謝謝。最後使用了「代理方法Sean Corfield在這裏描述http://corfield.org/entry/Extending_Your_Root_Applicationcfc – Saul