Hello all,

I'm building an app using Flex3/services/amfphp on Drupal 6 with use sessid off, api keys off.
I made a small getSession() custom method which returns the global $user object back to the app.

All the app does, for debugging purposes, is display the newly fecthed user data in text fields.
It also has a button to fetch the current session data on demand. The goal is:
- Load the app, show current user
- switch the drupal user and click the button
- Show alert saying session has changed and show new user data

Works perfect for me. But others have issues.
- They login to Drupal, a session is created - Fine
- They load the flex app, ANOTHER session gets inserted as anonymous - IS THAT NORMAL?
- All following refreshes, reloads, or button clicks always use that anonymous session and totally discard the existing logged in drupal user.

In what situations does Services create new sessions? And how come I'm not getting duplicate sessions but others are?

Has anyone had similar issues ?