Ok. So after the user changes the session value and I write that to permanent storage they'll have to log out and log back in again. That's not that big of deal - *except* - using the application scope variable to set the sessionTimeout in the pseudo also doesn't seem to be working. If I do:
<cfset this.sessionTimeout = CreateTimeSpan(0,0,7,0) /> logging the this.sessionTimeout value to a file appears to be correct. However, if I do: <cfparam name="application.ST" default="20"> <cfset this.sessionTimeout = CreateTimeSpan(0,0,application.ST,0) / > the log shows a this.sessionTimeout defaulted to whatever the xml config file has in it. Why can't I use the application scope variable there? - Matthew -- Open BlueDragon Public Mailing List http://www.openbluedragon.org/ http://twitter.com/OpenBlueDragon official manual: http://www.openbluedragon.org/manual/ Ready2Run CFML http://www.openbluedragon.org/openbdjam/ mailing list - http://groups.google.com/group/openbd?hl=en
