Skip to main content
Known Participant
October 28, 2008
Answered

Cannot connect to FMS3

  • October 28, 2008
  • 2 replies
  • 531 views
I thought it was because I was placing the files in the wrong folder but that didn't seem to be the problem. How can I test the connection using the sample.flv that installed by default? My systems admin swears the firewall is open etc. etc. etc. but we are running FMS3 on a Windows 2003 server and he's a novell admin so he said he could be missing something there. Any help would be great!
    This topic has been closed for replies.
    Correct answer
    Write a very simple AS2 program in flash:

    var nc=new NetConnection();
    nc.onStatus = function(info){
    trace(info.code);
    }
    nc.connect("rtmp://myFmsHostOrIP/my_application_name");

    If you get NetConnection.Connect.Failed in your output window, the server cannot be reached (meaning your sys admin has some digging to do). If you get anything else (like NetConnection.Connect.Success or NetConnection.Connect.Rejected), then it's a problem with your application setup.

    2 replies

    Inspiring
    October 28, 2008
    I am having similar issues (see unsigned application post). using the above code running on a web server outside the firewall I return NetConnect.Connect.Failed when i run the application on the FMS3 server i get NetConnect.Connect.Closed and the server log shows rejected because the application is unsigned.
    Inspiring
    October 28, 2008
    OK unnassigned error has gone away (locally at least.) But I am still not able to connect to FMS port 1935 from another webserver
    Correct answer
    October 28, 2008
    Write a very simple AS2 program in flash:

    var nc=new NetConnection();
    nc.onStatus = function(info){
    trace(info.code);
    }
    nc.connect("rtmp://myFmsHostOrIP/my_application_name");

    If you get NetConnection.Connect.Failed in your output window, the server cannot be reached (meaning your sys admin has some digging to do). If you get anything else (like NetConnection.Connect.Success or NetConnection.Connect.Rejected), then it's a problem with your application setup.
    lawtechAuthor
    Known Participant
    October 28, 2008
    Thanks Jay. I was able to get connect.success with your as2 app so I need to see whats wrong with my file prep.