gpt4 book ai didi

c# - 如何修复 HTTP 错误 500.22 - 内部服务器错误检测到不适用于集成托管管道模式的 ASP.NET 设置

转载 作者:太空狗 更新时间:2023-10-29 21:26:54 24 4
gpt4 key购买 nike

我正在学习 Http 模块,在上次尝试中我收到了:

HTTP Error 500.22 - Internal Server Error An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.

建议的解决方案之一是:

from the IIS Express install directory, run appcmd migrate config "Default Web Site/".

因此,在命令提示符下,我转到 C\Program Files\IIS Express,然后执行:appcmd migrate config "Default Web Site/"

我收到的命令“迁移”在对象配置上不受支持。

如何正确地做到这一点?

最佳答案

Chk my SO Post

最后,我能够破解 VS.Net 2015 及其 IISExpress 配置。不可能在“外部”配置它,如果您继续在 VS.Net 之外修改 IIS 或 IISExpress 设置,则什么都不会起作用。

我花了一段时间才将注意力集中在 VS.Net 项目属性和配置上。我发现 VS.Net 创建了自己的“applicationhost.config”版本,可以在 -

<myProject.sln path> \.vs\config\applicationhost.config

这是我必须更改应用程序池的文件 (applicationPool="Clr4ClassicAppPool) -

    <sites>
<site name="WebSite1" ... ignore this sction if present
</site>
<site name="myProject" id="2">
<application path="/" applicationPool="Clr4ClassicAppPool">
<virtualDirectory path="/" physicalPath="D:\Source\myProject" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:1960:localhost" />
</bindings>
</site>

您只需要更改 applicationPool(您的经典应用程序池名称可能不同,在这种情况下从同一文件中获取正确的名称)。还要确保您正在更新正确的“site"节点(从 VS.Net 调试时 Web 应用程序的正确本地主机 url)

如果仍然存在问题,请设置以下 -

<applicationDefaults applicationPool="Clr4IntegratedAppPool" />

希望这对您有所帮助。

关于c# - 如何修复 HTTP 错误 500.22 - 内部服务器错误检测到不适用于集成托管管道模式的 ASP.NET 设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35013500/

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