application.cfc - definition of APPLICATION variables
I started to have logs in coldfusion 8 administrator about my variables which are in application.cfc.
------ log-----
"Could not find the ColdFusion Component or Interface cfcs.cfcfile.
Ensure that the name is correct and that the component or interface exists. "
--------------
Everywhere in website I use invoke with variable APPLICATION.cfcApp, so I dont have to write always folder.cfcs.cfcfile:
<cfinvoke component="#APPLICATION.cfcApp#" method="someMethod" returnvariable="retVar" >
In my application.cfc I have:
<cffunction name="onRequestStart" returntype="boolean" output="true">
<cfset APPLICATION.datasource = "xxxx">
<cfset APPLICATION.CFCRootPath ="xxxx">
<cfset APPLICATION.username = "xxxx">
<cfset APPLICATION.passport = "xxxx">
<cfset APPLICATION.cfcApp= "folder.cfcs.cfcfile">
<cfreturn true>
</cffunction>
Why I have sometimes that record in logs ?
Thanks for help.
