CF keeps issuing new CFIDs for my session
So, I have J2EE memory variables disabled (so, to my knowledge, CF will issue CFID and CFTOKEN)
I checked my browser (Chrome 30) and I have not disabled cookies in any shape or manner). I was dumping the SESSION scope to the screen, and taking note of the CFID, and it kept changing each time I reloaded the page, which made me think that for some reason a cookie was not being set on my browser, or my browser was not sending the cookie in the REQUEST subsequently.
Are there other things I need to check on to make sure I'm setup properly? My APPLICATION variables for SESSIONS are:
THIS.sessionManagement = true
THIS.sessionTimeout = createTimeSpan( 0,0,30,0 )
In my onRequestStart, I am running a:
<cfset onApplicationStart() />
Which as I understand it means it will run the code IN the oAS() method, but will not start a new application. None of my code in those BIFs does anything with the SESSION scope.
