Hi 
    i can't use this tag because user could be keying in data so if i
activate this autologout ....they will not be able to save their data .
  Does anyone know what event will be triggered when user type in another
url ? If we can capture this event then we can handle the auto logout for
the user. 

-----Original Message-----
From: VAN VLIET, SCOTT E (SBCSI) [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 04, 2002 4:30 AM
To: CF-Talk
Subject: CF_AutoLogout (was RE: Auto logout when leaving the application)


I have seen several people post questions regarding this matter before, so I
built this little tool:

CF_AutoLogout v1.0
http://www.brdwrks.com/downloads/AutoLogout.zip

This tool will automatically send a user to a logout page if that user is
inactive for a specified amount of time.

USAGE:

<CF_AutoLogout
        LogoutLocation="../logout.cfm"
        Minutes="20"
        Seconds="30"
        ProcessInline="Yes">

This tag basically just writes the window watcher JavaScript that will do a
redirect after a certain amount of time.  You will need a script which
actually expires the user's session / logs the user out, and you will
specify this script as the LogoutLocation.

The tag is self documented, but if you have any questions, please let me
know.

Enjoy!


--
Scott Van Vliet
Senior Analyst
SBC Services, Inc.
ITO Enterprise Tools
Office: 858.886.3878
Pager: 858.536.0070
Email: [EMAIL PROTECTED]


-----Original Message-----
From: VAN VLIET, SCOTT E (SBCSI)
[mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 03, 2002 11:05 AM
To: CF-Talk
Subject: RE: Auto logout when leaving the application


I am building a JS tool that will automate this process.  I will post it..

--
Scott Van Vliet
Senior Analyst
SBC Services, Inc.
ITO Enterprise Tools
Office: 858.886.3878
Pager: 858.536.0070
Email: [EMAIL PROTECTED]
 


-----Original Message-----
From: Shawn Regan [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 03, 2002 9:20 AM
To: CF-Talk
Subject: RE: Auto logout when leaving the application


I believe I got this a while back from hal helms website.

<cfif IsDefined("Cookie.CFID") AND IsDefined("Cookie.CFTOKEN")>
  <cfset cfid_local = Cookie.CFID>
  <cfset cftoken_local = Cookie.CFTOKEN>
  <cfcookie name="CFID" value="#cfid_local#">
  <cfcookie name="CFTOKEN" value="#cftoken_local#">
</cfif>

this kills the client/session variables when the browser closes because it
has taken the cookies set by the cfapplication and resets them to expire
when the browser closes.


Shawn Regan
Applications Developer
Pacific Technology Solutions 

-----Original Message-----
From: VAN VLIET, SCOTT E (SBCSI) [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 03, 2002 8:49 AM
To: CF-Talk
Subject: RE: Auto logout when leaving the application


I am working on a custom tag that will solve this, and will post it when I
finish.

--
Scott Van Vliet
Senior Analyst
SBC Services, Inc.
ITO Enterprise Tools
Office: 858.886.3878
Pager: 858.536.0070
Email: [EMAIL PROTECTED]


-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 03, 2002 8:41 AM
To: CF-Talk
Subject: Re: Auto logout when leaving the application


Good question.  I am also interested in this response, but with an added
element.  What if a user closes the browser, how do you kill client/session
variables, presumably someone could close the browser thinking they are
"logged out", the next person wanders up and sees the first persons
information.

CC


 

                    Brian Fox

                    <brianfox            To:     CF-Talk
<[EMAIL PROTECTED]>                               
                    @sdccd.cc.ca.        cc:

                    us>                  Subject:     Auto logout when
leaving the application                     
 

                    04/03/02

                    10:30 AM

                    Please

                    respond to

                    cf-talk

 

 





What's the best way of handling security for a website that may be used in
a
kiosk mode?  I'm working on a student grade system that does a one time
validation and sets a session variable.  Timeout is 15 minutes.

John may log into the system using a lab computer to retrieve his student
grades, become confused, wander to yahoo, read his mail, then leave the
computer as is.  Sue may come in to use the same machine, go to the grade
application to get her grades, and still be logged in as John.  Is there a
good way to avoid this?

I'm thinking about mangling the referer variable and zapping the session
variables if the referer is not from the application.

 i.e. <cfif left(CGI.HTTP_REFERER,X) is not "http://www.gradesrus.com/"; ...
session.auth=0>

That would solve the 'lost' client wandering out of the site.  Leaving the
site is equivalent to logging out then (more or less).

What about a javascript warning when a person is going to leave the
application?  I'm not a javascript guru, but it seems like an onunload in
the body should be able to give a popup alert and hopefully the ability to
cancel the outside navigation.  Anyone ever try it?

Is there a better approach to this?

Thanks!
Brian







______________________________________________________________________
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to