Skip to main content
Known Participant
February 23, 2010
Answered

NetConnection failed message ?

  • February 23, 2010
  • 1 reply
  • 700 views

//Create a connection
client_nc = new NetConnection();

// Show connection status in output window
client_nc.onStatus = function(info) {
trace("Level: " + info.level + newline + "Code: " +  info.code);
txt.text+= "  Level: " + info.level + "  " + "Code: " +  info.code;

};
// Connect to the application
client_nc.connect("rtmp://FMS3.5installedserver-IP/tutorial_sharedball/room_01");

    This topic has been closed for replies.
    Correct answer SE_0208

    Can you check your firewall settings and see if relevant ports :1935,:80 are open.I suspect since you are getting NetConnection.Connect.Failed message its not even reaching FMS machine.

    1 reply

    SE_0208Correct answer
    Participating Frequently
    February 23, 2010

    Can you check your firewall settings and see if relevant ports :1935,:80 are open.I suspect since you are getting NetConnection.Connect.Failed message its not even reaching FMS machine.

    tkosenAuthor
    Known Participant
    February 23, 2010

    Thank you