I recently tested IIS compression and was happy with the results, after I figured out how to set the compression level. The end result was a 196 kb JSON result compressed to 13.6 kb.
Below are some notes I made for myself on setting up dynamic compression and setting the compression level. I apologize if they are rough as I made them primarily for my own future reference.
In addition, I would definitely advise trying JSON over XML as it provides a much more compact result. I don't have specific numbers, but off-hand, my recollection is that JSON was around 50% smaller than XMl.
Install dynamic compression if necessary
Windows 7:
- Open the Programs and Features console by going to Start > Control Panel > Programs and Features.
- Click 'turn Windows features on or off'.
- In the dialog, expand Internet Information Services > World Wide Web Services > Performance Features, and turn on Dynamic Content Compression.
- Click Ok.
Windows Server 2008:
- Open the Server Manager console by going to Start > All Programs > Administrative Tools > Server Manager.
- In the Server Manager tree view, expand Roles, and click Web Server (IIS).
- In the main window, scroll down to the Role Services panel, and click Add Role Services.
- In the Select Role Services dialog, click and enable Web Server (Installed) > Performance (Installed) > Dynamic Content Compression.
- Click Next.
- On the Confirm Installation Selections screen, click Install.
Enable dynamic compression in IIS
- In IIS management app, select the server, and in the IIS feature group, double click "Compression".
- Check "Enable dynamic content compression".
Enable for "application/json" and "application/xml"
- Find the applicationHost.config file in c:\Windows\System32\inetserv\config
- edit it and find the httpCompression element.
- Under
<dynamicTypes>, add the following elements:
<add mimeType="application/json" enabled="true" />
<add mimeType="application/xml" enabled="true" />
Restart IIS.
To verify, check in Fiddler and make sure the 'Decode' button is not selected (the Decode button should be on the main toolbar). You should see that the response 'Content-Encoding' header shows 'gzip', and that the response is compressed:

Advanced Settings
Set the compression level using the following command (the default level is 0):
C:\Windows\System32\Inetsrv\Appcmd.exe
set config -section:httpCompression
-[name='gzip'].staticCompressionLevel:9
-[name='gzip'].dynamicCompressionLevel:4
See these sites for additional details:
Making the most out of IIS compression - Part 1: IIS 7 configuration
IIS 7 Compression. Good? Bad? How much?
My initial testing of a json response:
None: 196,416 bytes
Level 0: 35,234
Level 1: 29,219
Level 4: 18,461
Level 9: 13,638