Skip to main content
shrhoads
Participant
November 18, 2014
Answered

Server Side Actionscript for HTTP Streaming Connections, is it supported?

  • November 18, 2014
  • 1 reply
  • 481 views

Hi, I have a server side actionscript application working for RTMP, and I would like to reuse this code for HTTP connections.

Is this possible?

This topic has been closed for replies.
Correct answer hparmar

No...The arguments in http argument list is not passed to rtmp connection as argument list.


What you can do is to write your own apache module, which will entertain certain requests and create appropriate http responses as well as communicate to rtmp server separately.

1 reply

Adobe Employee
November 20, 2014

Short answer is No, Actionscript is just for RTMP and RTMFP streaming..Thats said, what exactly is that you want to do with your HTTP streaming connections...I ask this because everytime you make a http connection(for say live streaming) an underlying rtmp connections is established.

shrhoads
shrhoadsAuthor
Participant
November 20, 2014

Thank you for your answer.  If I understand what you are saying, the apache modules proxy http to rtmp on the streaming server.  I have an application that is passing context into the rtmp server side javascript using a url similar to this:

rtmp://myhostname.com/myapp?mycontext/mp4:myfilename

Do you think there is a way to pass the mycontext through the http url so that the Server Side Actionscript can perform an operation based on that context?

Adobe Employee
November 20, 2014

No...The arguments in http argument list is not passed to rtmp connection as argument list.