I'm trying to extend a component in my application located on a local server (the url to access to my application is defined like that: http://my.new.application/)
Here is the structure of my application on the server (I cannot change the name of the main folder) is:
- folder my.new.application
- application.cfc
- index.cfm
- Folder
- application.cfc
- page.cfm
The folder folder
has it's own Application.cfc file extending the master
one and overloading the onRequestStart
function with an empty one.
But when I try to implement that:
<cfcomponent displayname="Application" extends="my.new.application/Application">
<cffunction name="onRequestStart">
<!--- override the parent implementation to remove authentication for this
part of the application --->
</cffunction>
</cfcomponent>
I get the following error:
Could not find the ColdFusion component or interface my.new.application/Application.
On the production server the main folder is named myApplication
. If I do the same:
<cfcomponent displayname="Application" extends="myApplication/Application">
It works perfectly.
Could you please help me in order to solve the problem for the local server ?