5
I need to create a file SharedObject
Flash on an internet server for communication between several .SWFs
. This communication needs to be fast and if possible in real-time. After some searches on the website of Adobe reference, 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);
From what I understand, you need to own a server RTMP
, which is a type of Media Server used by Flash to handle live-streaming media and also data with the SharedObject
.
In this link from Wikipedia I found an open-source media server called Red5, but I’m having a hard time learning how to use it.
Has anyone ever worked with this type of server? Is there one that is free? Can I integrate it into Wamp Server, for example? How the connection to this server works?