Web Service Compression

Hi there,

I have developed a Web Service that retrieves a big amount of data on every request. That makes my client application to run slow. Is there a way to compress the data on the server side, in order to get smaller packages on the other side?

Thanks in advance.

Juan Pablo

Hi

The problem is only about package or also the count of the records?

To compress the data you could use


ob_start('ob_gzhandler');

Give us more details about your issue