Mark
Member since Dec 11, 2008
- Profile: /members/57-mark.htm
- URL: http://www.markireland.com.au
- Comments: 5
Recent Blog Comments By Mark
-
ColdFusion Application.cfc Tutorial And Application.cfc Reference
Posted on Feb 22, 2011 at 3:29 PM
I asked the question because I thought the graph of sessions you see in the CF Enterprise Performance Monitor did not make sense.... read more »
-
ColdFusion Application.cfc Tutorial And Application.cfc Reference
Posted on Feb 22, 2011 at 7:17 AM
So how is a count of sessions calculated? Is it simply not gone until 8 hours (the default setting in the servers xml) has passed? Add it, wait 8 hours and subtract it?... read more »
-
Ask Ben: Dynamically Executing ColdFusion Application.cfc Instances
Posted on Jul 15, 2008 at 3:21 AM
I thought sessionTimeout was a number of seconds.... read more »
-
Ask Ben: Dynamically Executing ColdFusion Application.cfc Instances
Posted on Jul 9, 2008 at 9:32 PM
In my toplevel app cfc I set: <cfset this.applicationTimeout = createTimeSpan(0,0,20,0)> <cfset this.sessionManagement = true> <cfset this.sessionTimeout = createTimeSpan(0,0,19,0)> But the copy of the public value THIS[] in the sub app cfc is: SESSIONTIMEOUT 0.0131944444444 ... read more »
-
Ask Ben: Extending Application.cfc And OnRequestStart() With SUPER
Posted on Jul 8, 2008 at 11:58 PM
So is this: <cffunction name="onRequestStart"> <cfargument name="targetPage" type="string" required=true> <cfif super.onRequestStart(targetPage)> <cfreturn true /> <cfelse> <cfreturn false /> </cfif> </cffunction> ... read more »