Hi
I have a web service in C# that computes every 10 minutes some very large report - amount of data returned = 120MB. The report is cached.
We will use HTTP compression but the issue I'm having is that it will compress our cached report for each client request : in IIS 6.0 only static files are cached even when compressed.
Is there some way around it so that IIS caches the compressed report and serves it to clients, and we compress again only once the report has changed ?
In the past we have tried to compresse the data ourselves in the web service but the gain was not as good as when IIS does the job.
Thanks.
Olivier