gpt4 book ai didi

iis - 异常消息 : WebSockets is unsupported in the current application configuration

转载 作者:行者123 更新时间:2023-12-04 23:21:22 29 4
gpt4 key购买 nike

就在最近,我升级到了 64 位 Windows 2012 标准服务器,所以我可以使用 Web 套接字。

我已经通过服务器管理器添加了角色/功能。

我注意到在我的 Windows 日志中我收到了这条消息:

Event code: 3005 
Event message: An unhandled exception has occurred.
Event time: 18/11/2014 11:51:12
Event time (UTC): 18/11/2014 11:51:12
Event ID: 5261ba8b0e5343289d5fc8618adb8117
Event sequence: 113
Event occurrence: 1
Event detail code: 0

Application information:
Application domain: /LM/W3SVC/1/ROOT-1-130607850516111864
Trust level: Full
Application Virtual Path: /
Application Path: D:\Release\WebRoot\
Machine name: DSVR019492

Process information:
Process ID: 660
Process name: w3wp.exe
Account name: IIS APPPOOL\.NET v4.5

Exception information:
Exception type: InvalidOperationException
Exception message: WebSockets is unsupported in the current application configuration. To enable this, set the following configuration switch in Web.config:
<system.web>
<httpRuntime targetFramework="4.5" />
</system.web>

所以,我尝试添加 在消息告诉我的地方。
但我收到这个警告:
The 'targetFramework' attribute is not allowed.

<system.web>
<httpRuntime targetFramework="4.5.1" />

但在我添加这个之前,我注意到我有这个:
  <system.web>
<compilation debug="true" targetFramework="4.5.1">

这不是一回事吗?如果这是我收到该警告的原因。

我等着被教育...

最佳答案

你启用模块了吗? http://danielhindrikes.se/windows-8/enable-websocket-protocol-in-iis/

enter image description here

在 Windows 2012 服务器中启用 WebSocket 协议(protocol)

  • 打开“服务器管理器”
  • 点击右上角“管理”
  • 点击“添加角色和功能”
  • 转到“向导中的安装类型”
  • 选择“基于角色或功能安装”并单击“下一步”
  • 转到“服务器角色”
  • 展开“Web 服务器(IIS)”
  • 展开“网络服务器”
  • 展开“应用开发”
  • 勾选 WebSocket 协议(protocol),点击“下一步”
  • 点击“安装”

  • 在我的 Web.config 中,我有:
      <system.web>
    <compilation debug="true" targetFramework="4.5.1" />
    <httpRuntime targetFramework="4.5.1" />
    </system.web>

    那么它可能与此有关吗? Unrecognized attribute 'targetFramework'. Note that attribute names are case-sensitive或者您正在从 VS2010 进行编辑

    关于iis - 异常消息 : WebSockets is unsupported in the current application configuration,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26994060/

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