RE: [flexcoders] tracking a user session

2007-02-01 Thread Dimitrios Gianninas
When your user is authenticated in Flex, then retrieve his info and roles and store it in a global variable that u can use from anywhere in your app. For people using Cairngorm (and you might not) this will look like so: ModelLocator.getInstance().user = someUserInstance; Since the ModelLocat

Re: [flexcoders] tracking a user session

2007-01-31 Thread Jeffry Houser
You don't need to track sessions in the same way that you would in Web Applications. Adding a string at the end of the URL to track sessions is fine. All flex-based apps will most likely be served off the same URL, won't they? Just store your session variables as 'local' to the Flex in