Can anyone tell me what will be my session time out? Is it "1" hour or "45 " minutes?
Does session timeout defined in application.cfm overwrite <cflock scope="session"> values?
I have created webservices using Coldfusion and deployed using Bluedragon for J2EE aplication server(JBOSS).
I specified session timeout in the application.cfm page as
<CFAPPLICATION
NAME="remo"
CLIENTMANAGEMENT="yes"
SESSIONMANAGEMENT="Yes"
SETCLIENTCOOKIES="yes"
SESSIONTIMEOUT="#createTimeSpan(0,1,0,0)#"
APPLICATIONTIMEOUT="#createTimeSpan(1,0,0,0)#"
clientStorage = "cookie">
Inside my application I have also used <CFlock> to lock the session variables as such
<cflock type="exclusive" scope="session" timeout="45">
<cfset session.formhandlerList = structNew()>
</cflock>
Please help