Application
From CEW
Application.cfc was introduced with ColdFusion MX 7 as an equivalent/expansion of the existing Application.cfm and OnRequestEnd.cfm scripts. It is supported also since Railo 1.1 and BlueDragon 6.2.
Standard Functions
The initial Application.cfc contained the following functions:
- onApplicationStart
- onApplicationEnd
- onSessionStart
- onSessionEnd
- onRequestStart
- onRequest
- onRequestEnd
- onError
Other Functions
The following functions have been added by later engine releases.
onMissingTemplate
This function was added in ColdFusion 8, Railo 2 and BlueDragon 7. It is triggered when the requested script does not exist.
onClientStart
This function is currently unique to BlueDragon 7. It is equivalent to onSessionStart, but for the Client scope.






