Any Ruby AMF clients out there?

I'm looking for a way to push / receive AMF0 / AMF3 messages in Ruby (Rails).
From what I read, rubyAMF can only act as a server.

I need a library that allows a client to access FMS / Wowza.

Any ideas?

+2


a source to share


1 answer


As a RocketAMF developer http://github.com/warhammerkid/rocket-amf I don’t know of any AMF libraries that can act as clients out of the box.However, if you are interested in this, it should not be that hard to change the server code in RocketAMF to work as a client. You just write a serializer for RocketAMF :: Request that uses the standard style of calling message ( #<RocketAMF::Request:0x10167b658 @headers=[], @messages=[#<RocketAMF::Message:0x10167ae88 @response_uri="/1", @data=["session stirng", 42.0], @target_uri="App.helloWorld">], @amf_version=3>

). Then, you must write a deserializer for RocketAMF :: Response.



I will try to build a new build of RocketAMF in the next couple of days that can communicate with FMS, but this is not a guarantee.

+1


a source







All Articles