CHttpSession usage

I’m having a problem. On web my app a user logs in by filling in their username and a room name on the login form. I’m setting a session variable like so

$session[‘room’] = $_POST[‘LoginForm’][‘room’];

Now it seems that the roomname session variable is the same across all http sessions. I’m trying out the app in a couple of browsers and they all show the same value for $session[‘room’]. Am I making some sort of glaring oversight here?

Any ideas?

Try using setState in your UserIdentity component?