在 C#/Mono 中序列化至 Adobe AMF 或从 Adobe AMF 序列化?
使用 Zend_Amf 可以将 php 对象序列化为 Adobe AMF 格式或从 Adobe AMF 格式序列化。 是否有用于将 C# 对象序列化到 AMF 或从 AMF 反序列化的等效库?
我正在使用 Mono 2.4。
Using Zend_Amf it's possible to serialize php objects to/from Adobe AMF format.
Is there an equivalent library for serializing/unserializing C# objects to/from AMF?
I'm working in Mono 2.4.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有几种选择。这是最好的。
http://www.fluinefx.com/
Fluorine 通过 HTTP 提供 AMF 的完整客户端和服务器实现至少 AMF 在 RTMP 上的服务器实现(我不确定 RTMP 的客户端 - 我们只是没有使用它,所以我没有研究它)。它还包括可直接用于 AMF 序列化和反序列化的类。
我们在应用程序中广泛使用它作为 HTTP AMF 服务器、随机 AMF 序列化/反序列化、RTMP 服务器,过去我们使用 Fluorine 实现了一个普通的 AMF over TCP 套接字服务器(不再需要,这是 RTMP 之前的版本)支持)。
There are several options. Here's the best.
http://www.fluorinefx.com/
Fluorine provides a full client and server implementations of AMF over HTTP and at least server implementations of AMF over RTMP (I'm not sure about client for RTMP--we just haven't used it so I haven't looked into it). It also includes classes that can be utilized directly for AMF serialization and deserialization.
We use it extensively in our application as an HTTP AMF server, for random AMF serialization/deserialization, RTMP server, and in the past we implemented a plain AMF over TCP socket server using Fluorine (which is no longer necessary, this was pre-RTMP support).
我最近写了一篇关于 FluorineFx AMF 数据传输的闪存方面的博客文章。 github 上也有一些开源代码(在博客文章中链接)。
也许它会很有用:http://labs.specialmoves。 com/code/flash-data-transfer-using-fluinefx/
I've recently written a blog post regarding the Flash aspect of FluorineFx AMF data transfer. There's some open source code on github (linked to in the blog post) too.
Maybe it could come in useful : http://labs.specialmoves.com/code/flash-data-transfer-using-fluorinefx/