James Holmes wrote: > The session will end when the user closes the browser if you've > enabled J2EE sessions in the CF admin or if you've written code to > convert the cookies to be session based. Are either of those things > the case?
The session *NEVER* ends when the browser closes. If one is using J2EE or one has otherwise configured the cookies used to identify a client to a session state, the cookies should be expied when the browser closes. Thus the client will have to start a new session and get new cookies the next time it connect. But the old session has not ended. It is sitting their, waiting until the session timeout expires, for any new request that might return valid cookies to connect to it. This is an important distinction to understand when dealing with this type of problem. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:322523 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

