I am not sure how or if FMS provides a means for dynamic rooms, but Red5 does and I will try to explain how to use it below. For the following example, you should expect the following url – rtmp://localhost/myapp/room is being used. The method below is an overridden super class method from the Red5 application adapter. The example places a client into an id based “chat” room; the id algorithm could be anything you desire and is not fixed. I have used this block in a couple projects, one of which used an encrypted room and id portion and its url looked similar to this – rtmp://localhost/myapp/29c8109abd29e
@Override
public boolean roomJoin(IClient client, IScope scope) {
log.debug("roomJoin - client id: {} scope: {}", client.getId(), scope);
IConnection conn = Red5.getConnectionLocal();
String scopeName = scope.getName();
log.debug("Scope name: {}", scopeName);
//check for "application" scope
if ("myapp".equals(scopeName)) {
log.debug("Connection already connected to app scope");
} else if (conn.hasAttribute("in.room")) {
//client is already in a room
log.debug("Connection already connected to room scope");
} else {
//the room name
String roomName = scopeName;
//set flag
conn.setAttribute("in.room", true);
//get app scope
IScope appScope = scope.getParent();
//handle at room level
if ("room".equals(roomName)) {
//lookup room (top level)
IScope roomScope = ScopeUtils.resolveScope(appScope, roomName);
if (roomScope == null) {
if (appScope.createChildScope(roomName)) {
log.debug("Room {} created", roomName);
roomScope = appScope.getScope(roomName);
} else {
log.warn("Room {} was not created", roomName);
}
} else {
log.debug("Room scope {} was found", roomName);
}
//get the next room identifier
String chatId = getNextChatId();
//room for chat id
IScope chatScope = ScopeUtils.resolveScope(roomScope, chatId);
if (chatScope == null) {
if (roomScope.createChildScope(chatId)) {
log.debug("Chat scope {} created", chatId);
chatScope = roomScope.getScope(chatId);
} else {
log.warn("Chat scope {} was not created", chatId);
}
} else {
log.debug("Chat scope {} was found", chatId);
}
//send the actual join
return roomJoin(client, chatScope);
} else {
return false;
}
}
return super.roomJoin(client, scope);
}
After this block is executed, your client would be connected to something like this – rtmp://localhost/myapp/room/1001 without having to create any additional NetConnections. The method “getNextChatId()” is meant to provide a chat room id, based on whatever criteria you would like.
Tags: flash, fms, NetConnection, Red5, room, rtmp, scope
With FMS you just connect to the server and add /”anything” to the connection string and another instance of the app will be created.
nc.connect(rtmp://95…./myapp/room1,params);
nc.connect(rtmp://95…./myapp/another..,params);
this would create two separate instance of the app (rooms)
may i know why my scope.getName() and scope.getParent() is not working?
is there any additional imports that i need to do besides, iScope, iBasicScope and ScopeUtils?
@bennie, yea but like Paul mentioned, that requires you to open/create multiple netconnections.
Hi Paul, thanks for your example.
I tryed to use your code, but after the creation of the new room, che connection still remain on the first room.
Do you have any ideas about why this is happening?
thanks
Filippo
thanks for providing code. i would be thankful if someone provide me client side code too for this…..
Client code is simple a SharedObject connection. Check Adobe.
Implemented this with FluorineFx and I have the same issue with Filippo, client is still connected on the first room.
Any ideas?
Filippo got a solution?
From what I’ve heard you can’t connect the client-side sharedObjects to the dynamically created room. What would I then use the above snippet for?
More about the topic:
http://old.nabble.com/How-change-room-without-reconnection–tp25853425p26244954.html
Hello,
1) as stanley, I cannot get the scope.getParent() and scope.getName() working.
So that makes that I cannot do anything at all…
In my IScope interface, I only have getScopeNames function, that return a Iterator from which I can only get the next() object and not the current Name…
What Can I do, then?
2) In my logs, if I put: log.debug(“scope: ” + scope), I get:
scope: [Scope@1bfefb Depth = 2, Path = '/default/TestJedai1', Name = 'laNouvellRoom']…
How can I get the laNouvellRoom info?
Thank you.
Regards,
Etienne.