I implement gzip on our Microchip TCP/IP embedded web server to compress static web resources (html, js, and css files) - The files get gzipped automagically when we upload the web site to the Microchip server.
However, I have a web page that is generated on the fly (it's not a static html page) and this page contains a lot of data (~2MB).
To speed up the download time (for the client), I would like to gzip the data prior to sending it to the client. Is this possible? Or are we limited to compressing only static files?