I'm trying to implement a "remember me" feature in a Flex/BlazeDS application. This is where users enter their credentials in a flex message box, and something identifying their logon session is stored on the flex client, even if they close and re-open the application.
I've been looking at storing this information in attributes on FlexSession and FlexClient, but these are temporary, and any attributes get deleted when the application is closed. Has anyone been able to do this, without reverting to an ugly ajax bridge? The server-side is a simple tomcat servlet. Thanks! Mike