views:

15

answers:

1

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.

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

www.Flextras.com