Server: I have a zone rpc method that search for a suitable room for the user that made the call (I send the username as parameter) and add the user to the room.
	On server I have this inside the rpc method:
room.addUser(user, true);
	I checked and the user is added to the room.
	The problem is that on client side I never receive the notification that the user joined a room. I receive the response that the rpc call was ok but no notification for the join room event.
	I added this (I use Corona SDK on client side):
	   appWarpClient.addNotificationListener("onUserJoinedRoom", scene.onUserJoinedRoom)  
	 
	but the onUserJoinedRoom method is never called. I also made a little debug on client side and I get no data from the server.
	 
	Am I doing something wrong or it this a bug?
	 
	Andrei