I'm developing an application and I want to make one single connection for video (netstream) and chat (sharedObject).
I have one connection for each but I have limited connection available in the server so I need to make a single connection to handle the video net stream and chat sharedObject.
I use these URLs to connect:
private var serverWebcamURL:String = "rtmp://myserverIP/live";
private var serverChatURL:String = "rtmp://myserverIP/multicast/chat";
What do i have to do to make this work?