Question
Can developer version FMS2 be installed on Windows XP?
I downloaded the developer version of FMS2 and install it on
Windows XP. There is not any error or warning during the
installation process, and I can startup the administrate server and
media server. But I can not connect to the media server from my own
Flex application.
Flex application like:
...
var nc:NetConnection = new NetConnection();
nc.addEventListener(NetStatusEvent.NET_STATUS, OnRTMPStatusChanged);
nc.connect("rtmp://localhost/test1");
...
Server code like: (in applications\FirstApp\test1\main.asc)
application.onConnect=function(client)
{
trace("some client connected");
//this.rejectConnection(client);
application.acceptConnection(client)
}
Does the OS version cause the problem?
Flex application like:
...
var nc:NetConnection = new NetConnection();
nc.addEventListener(NetStatusEvent.NET_STATUS, OnRTMPStatusChanged);
nc.connect("rtmp://localhost/test1");
...
Server code like: (in applications\FirstApp\test1\main.asc)
application.onConnect=function(client)
{
trace("some client connected");
//this.rejectConnection(client);
application.acceptConnection(client)
}
Does the OS version cause the problem?
