How to return from navigateToURL() call?
I'm relatively new to Flex 4 and AS3, so if this question seems stupid, that's not intentional; it's a function of my learning...
The Question: How can one navigate from a Flex 4 / AS3 application to a URL not directly related to it, and then return to the Flex 4 / AS3 application in the same state it was when it was "navigated away from"?
I'm working on an application to which users are authenticated via a web single signon ("WSSO") application external to mine. Access to my application's initial page is granted by successful authentication in the WSSO tool. This authentication is effected through a web page hosted on the servers managing access to resources.
The WSSO application allows access for some period of time before the authentication it granted times out, and requires re-authentication before access to any protected resources is again allowed.
A timeout is detected whenever a call to one of the HTTPServices protected by WSSO returns a FaultEvent containing the HTML of the WSSO login page as its message. I can navigate to the URL corresponding to that HTML, requiring the user to re-authenticate, but how do I get "back" to the Flex application?
