On the server you have code that tracks who is logged in. In Flex, when a user logs in, you end the first session when a second active session is started for that user. In Flex, ping the server every so often to check whether or not you need to kick the Flex user off due to this policy violation rule. Show a message like "a second active logon has been detected, so you have been logged out." This isn't a trivial feature to implement. Maybe a first step would be to log more data so you know how common the problem is. It might turn out to be a minor issue that isn't worth dealing with, or an issue that can be handled differently, such as by reminding suspected violators of the rules via an E-mail.
-Mike Chabot On Sat, Mar 13, 2010 at 2:32 PM, iloveyouwisconsin < [email protected]> wrote: > > > I have a flex app that users pay to subscribe to my content. Obviously, I > don't want to let "user A" give his login credentials to "user B" but I have > no control over that part (some people are just evil). So, how can I prevent > two people from using the same username at the same time? I've read that > flash cookies wouldn't work (as the user can view the contents of such > cookie w/ a sol-editor...correct me if I'm wrong). Is there a better way? > > __._,_.__ >

