Any Ruby AMF clients out there?
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.
a source to share