I need to create a SharedObject
Flash file on one server on the internet for communication between several .SWFs
. This communication needs to be fast and if possible real-time. After some searches on the Adobe Reference , I found the following code:
var nc:NetConnection = new NetConnection();
nc.connect("rtmp://somedomain.com/applicationName");
var myRemoteSO:SharedObject = SharedObject.getRemote("mo", nc.uri, false);
myRemoteSO.connect(nc);
As far as I understand, you need to have a RTMP
server, which is a type of Media Server used by Flash to handle live-streaming media and also data with SharedObject
.
In this Wikipedia link I found an Open-Source media server called Red5 , but I'm having trouble learning how to use it.
Has anyone ever worked with this type of server? Is there any that is free? Can I integrate it into Wamp Server, for example? How does the connection to this server work?