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

后端 未结 14 760

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条回答
  • 2020-11-28 05:36

    Installing ASP.NET Core Runtime Hosting Bundle solved the issue for me. Source: 500.19 Internal Server Error (0x8007000d)

    0 讨论(0)
  • 2020-11-28 05:37

    I had the exact same error. It turned out that it was something was caused by something completely, though. It was missing write permissions in a cache folder. But IIS reported error 0x8007000d which is wildly confusing.

    0 讨论(0)
  • 2020-11-28 05:38

    I turn on .Net Framework 3.5 and 4.5 Advance Service in Control Panel->Programs and Features->Turn Windows features on or off.it work for me.

    0 讨论(0)
  • 2020-11-28 05:39

    In my case (.Net Core Web API) for this issue HTTP Error 500.19 – Internal Server Error 0x8007000d

    First download dotnet-hosting-3.0.0-preview5-19227-01-win (.Net Core 3) or dotnetcore 2 hasting windows

    https://download.visualstudio.microsoft.com/download/pr/5bed16f2-fd1a-4027-bee3-3d6a1b5844cc/dd22ca2820fadb57fd5378e1763d27cd/dotnet-hosting-3.1.4-win.exe

    Any .net core 3.1 application either angular or mvc application would need this.

    Second install it as Administrator Open cmd as administrator, type iisreset, press enter

    So refresh your localhost app

    Best regard M.M.Tofighi from Iran

    0 讨论(0)
  • 2020-11-28 05:41

    For me, it was all about setting up my web server to use the latest-and-greatest tech to support my ASP.NET 5 application!

    The following URL gave me all the tips I needed:

    https://docs.asp.net/en/1.0.0-rc1/publishing/iis-with-msdeploy.html

    Hope this helps :)

    0 讨论(0)
  • 2020-11-28 05:42

    Problem solved. Here are the steps that I tried:

    • Enable the 32-bit application in IIS -> Application pool -> Advanced settings
    • Copy System.EnterpriseServices.dll and System.EnterpriseServices.Wrapper.dll from C:\Windows\Microsoft.NET\Framework\v2.0.50727 to the application bin folder
    • Do comments/uncomments to sections on the web.config and found that problem related to the referenced DLL.

    The config that I commented the previous one that I added:

    <section name="handlers" overrideModeDefault="Allow" /> 
    <section name="modules" allowDefinition="MachineToApplication" overrideModeDefault="Allow"/>
    
    • Add the required FasterFlect.DLL used by Combres.DLL v2.1.0.0 to the application bin folder (shall download the full zip from Combres codeplex, because the required fasterflect DLL V2.0.3732.24338 cannot be found in fasterflect codeplex) and other DLLs. For convinience, use the full Combres.DLL (1,3MB)
    • Check that the DLL versions and public key tokens are configured correctly in web.config using tool, e.g. .NET Reflector
    0 讨论(0)
提交回复
热议问题