On Wed, Jun 15, 2011 at 9:19 AM, Raymond Camden <[email protected]> wrote: > If you are using session.ANYTHING, you will get an error. In > onSessionEnd, you must use the Session scope as it is passed in as n > argument. So arguments.sessionData.whatever instead of > session.whatever.
What Ray said: session scope has gone by the time onSessionEnd() is called. Also note that you do not have access to request scope at that point, nor CGI and a bunch of other things. onSessionEnd() is invoked "outside" the normal request machinery. -- Sean A Corfield -- (904) 302-SEAN An Architect's View -- http://corfield.org/ World Singles, LLC. -- http://worldsingles.com/ Railo Technologies, Inc. -- http://www.getrailo.com/ "Perfection is the enemy of the good." -- Gustave Flaubert, French realist novelist (1821-1880) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:345356 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

