DynamicCompressionModule issue with IIS 8.5

2

I am facing issue with DynamicCompressionModule and StaticCompressionModule on my Windows server 2012 R2. DynamicCompressionModule and StaticCompressionModule are installed. When i open my website it shows below error-

Module : DynamicCompressionModule
Notification : SendResponse
Handler : ExtensionlessUrlHandler-ISAPI-4.0_32bit
Error Code : 0x800700c1

It gives error even i have

<urlCompression doDynamicCompression="false" doStaticCompression="false" />

Enable 32 bit is set to true in application pool.

If i add below tag in web.config, website starts working but i want to enable compression for my website-

<modules>
      <remove name="StaticCompressionModule" />
      <remove name="DynamicCompressionModule" />
</modules>

In Server Roles, it shows both StaticCompressionModule and DynamicCompressionModule disabled so i am not able to uncheck both to reinstall.

Can anybody provide solution for this?

iis
windows-server-2012-r2
asked on Stack Overflow Mar 13, 2015 by par

1 Answer

2

Reinstalling "Performance" option worked. Just I over looked option "Remove Roles and Features" to uninstall option.

Reference: http://www.c-sharpcorner.com/UploadFile/cd7c2e/how-to-remove-iis-on-windows-server-2012/

answered on Stack Overflow Mar 18, 2015 by par

User contributions licensed under CC BY-SA 3.0