Is this how a request is processed?
OK, from the first request made in an application, let's say we have the following things in our application.cfc:
ooML = Out of Method Logic (logic that is in the application.cfc, but not in any method)
oAS = onApplicationStart
oRS = onRequestStart
oR = onRequest
oRE = onRequestEnd
oCFCR = onCFCRequest
So, before the application starts, it goes like this, right?
ooML > oAS > oRS > oR > oRE
And then after the application starts, a non-CFC request goes:
ooML > oRS > oR > oRE
And if a CFC is requested, it goes:
ooML > oRS > oCFCR > oRE
Do I have this right?
