ASP.NET: HTTP Error 500.19 – Internal Server Error 0x8007000d

后端 未结 14 864

I am replicating web application deployment and found several issues related to HTTP Error 500.19. My machine is running Windows 7 while the wo

14条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-28 05:36

    I understand that this error can occur because of many different reasons. In my case it was because I uninstalled WSUS service from Server Roles and the whole IIS went down. After doing a bit of research I found that uninstalling WSUS removes a few dlls which are used to do http compression. Since those dlls were missing and the IIS was still looking for them I did a reset using the following command in CMD:

    appcmd set config -section:system.webServer/httpCompression /-[name='xpress']
    

    Bingo! The problem is sorted now. Dont forget to run it as an administrator. You might also need to do "iisreset" as well. Just in case.

    Hope it helps others. Cheers

提交回复
热议问题