Serialization to / from Adobe AMF in C # / Mono?

Using Zend_Amf allows you to serialize php objects to / from Adobe AMF format. Is there an equivalent library for serializing / unserializing C # objects to / from AMF?

I am working in Mono 2.4.

+2


a source to share


2 answers


There are several options. Here is the best.

http://www.fluorinefx.com/



Fluorine provides full implementation of AMF servers and servers over HTTP, and at least server-side AMF implementations versus RTMP (I'm not sure about the client for RTMP - we just didn't use it, so I didn't look into It). It also includes classes that can be used directly for AMF serialization and deserialization.

We use it in our application as an HTTP AMF server, to randomize / deserialize AMF, RTMP server, and in the past we have implemented a simple AMF server over TCP socket using Fluorine (which is no longer needed, it was pre-RTMP support) ...

+4


a source


I recently wrote a blog post about the Flash aspect of FluorineFx AMF data transfer. There is some kind of open source on github (related to the blog post).



Maybe this might come in handy: http://labs.specialmoves.com/code/flash-data-transfer-using-fluorinefx/

+1


a source







All Articles