well not really but i cant get the "onSessionEnd" event working
here the code i use

<cfcomponent>
<cfset This.name = "cfDev" />
<cfset This.sessionManagement = true />
<cfset This.sessiontimeout="#CreateTimeSpan(0,0,0,5)#" />

<cffunction name="onApplicationStart" returnType="void">
<cfset Application.startTime = Now()>
<cfif NOT IsDefined("Application.count")>
<cfset Application.count=0>
</cfif>
</cffunction>

<cffunction name="onSessionStart" returnType="void">
<cfset Session.startTime = Now()>
<cfset Application.count = Application.count +1>
</cffunction>

<cffunction name="onSessionEnd" returntype="void">
<cfset Application.count = Application.count -1>
</cffunction>
</cfcomponent>

so what is this code good for? i want to display the amount of users online.
so if a sessions starts Application.count add 1. if a session ends it substract
1. SessionStart works good, but sessionEnd wont do anything. i've set the
sessiontimout to 5. and you can see (if you output Session.startTime) that the
session always starts new after 5 secconds. so the onSessionEnd event should be
fired but isnt. what the problem?

thanks
chris