Flex 远程对象压缩
我有一个 Flex 应用程序,它向服务器发送/接收大量数据。带宽占用率高。 我正在使用 RemoteObject 发送 XML(Java 中的文档)。所以我想压缩这个 XML 并减小大小。
I have a Flex application which sends/receive a lot of data to/from the server. The bandwidth usage is high.
I'm using RemoteObject to send an XML(Document in Java). So I'd like to compress this XML and reduce the size.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要将 RemoteObject 与 XML 数据一起使用。它否定了使用 XML 网关的所有好处。
使用 HTTPService 并在 Web 服务器上启用 GZIP 压缩。
有关详细信息,请参阅此问题的答案< /a>
Don't use RemoteObject with XML Data. It negates all the benefits of using the XML Gateway.
Use HTTPService and enable GZIP compression on your web server.
For more info, see the answers to this this question