I'm working on a project that uses the MVC4 WebAPI (RC). The responses are not gzip compressed (dynamic compression in IIS is enabled).
The responses from normal MVC controllers are compressed. Do I need a specific setting to enable gzip compression for WebAPI responses?
I could add a custom compression handler, but if possible, I would just like to use the built-in IIS compression.
BTW, I know this is almost a duplicate of Compress HTTP GET Response, however the accepted answer there doesn't really answer my question.