Skip to main content
Participant
April 20, 2008
Question

RTMPE only in FMS3?

  • April 20, 2008
  • 3 replies
  • 379 views
Hello,

I am in the process of setting up FMS3 (for the first time) and want to make streamed content available only through RTMPE, not through RTMP. What options do I have to do this?

Any advice is welcome; thanks.
    This topic is closed to new replies. Start a new post to keep the conversation going.

    3 replies

    stoem
    Known Participant
    April 21, 2008
    I'm not sure if the protocols can be explicitly configured but on a per-application basis you can check the client.secure and client.protocol properties easily in the onConnect.

    // untested code
    if ( !client.secure && client.protocol != "rtmpe" )
    {
    // reject connection etc...
    }

    stoem
    Known Participant
    April 21, 2008
    hi,
    you will need FMS3 to use RTMPE. There's also a minimum player version required on the client side which is 9,0115,0

    Regards,

    Stefan


    Participant
    April 21, 2008
    Very true; I have RTMPE working on FMS3. I just want to lock the server down so it will only serve by RTMPE and not RTMP. Is there a simple means of configuring this securely?