gpt4 book ai didi

asp.net - HTTP 错误 500.19 - 内部服务器错误 0x800700b7

转载 作者:行者123 更新时间:2023-12-05 08:09:50 25 4
gpt4 key购买 nike

我正在尝试发布一个网络服务,但我收到错误消息:

HTTP Error 500.19 - Internal Server Error
The requested page cannot be accessed because the related configuration data for the page is invalid.

我有以下详细信息:

Module  DefaultDocumentModule
Notification ExecuteRequestHandler
Handler StaticFile
Error Code 0x800700b7
Config Error Cannot add duplicate collection entry of type 'add' with unique key attribute 'value' set to 'KWebService.asmx'
Config File \\?\C:\inetpub\wwwroot\KWebService\web.config
Requested URL http://localhost:80/KWebService/KWebService
Physical Path C:\inetpub\wwwroot\KWebService
Logon Method Anonymous
Logon User Anonymous

哪个指向线:

   13:             <files>
14: <add value="KWebService.asmx" />
15: </files>

我已将 KWebService 文件夹保存在路径 C:\inetpub\wwwroot\KWebService 中。我的 web.config 是:

<?xml version="1.0" encoding="utf-8"?>
<!--
Pour plus d'informations sur la configuration de votre application ASP.NET, consultez
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<httpRuntime targetFramework="4.0" />
</system.web>
<system.webServer>
<defaultDocument>
<files>
<add value="KWebService.asmx" />
</files>
</defaultDocument>
<directoryBrowse enabled="true" />
</system.webServer>
</configuration>

我的 IIS 管理器有这个截图:

enter image description here

我使用的端口号是 80 和 targetFramework="4.0",在应用程序池中我有这个版本快照:

enter image description here

有人可以告诉我问题的原因吗?

最佳答案

你得到这个错误是因为你在更高级别的配置文件中有一个类似的条目。它可以在服务器或网站级别。尝试将以下内容放在 web.config 中的标签下方文件。

<remove name="KWebService.asmx" />

如果你不想放置上面的条目,那么你也可以尝试在更高级别的配置文件中找到重复的条目,如 applicationhost.config如果不需要,将其从那里移除。

关于asp.net - HTTP 错误 500.19 - 内部服务器错误 0x800700b7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32087318/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com