Copy link to clipboard
Copied
I created a Flex app that uses flash remoting with CFC. The user logs-in using a CF page then goes to the Flex App to edit data. Currently I'm using cfLogin with Idletimeout of 30 Minutes. Here is my problem, if the user runs the Flex app for more than 30 minutes and then try to request a CF page
getAuthUser will return a empty string (as it should). So how do I go about keeping a person logged in while using Flex?
I'm new to CF and flash. I'm guessing that there's a easy solution this.
Thanks,
Wayne
Copy link to clipboard
Copied
Hi,
What I do is to fire a button with logout url like:
navigateToURL( new URLRequest( 'index.cfm?logout=1'), '_self' )
How do you check in your app the 30 minutes idle?
Thanks
Johnny