关于.NET WebSocket connection to 'ws://xxx' failed: Error during WebSocket handshake: Unexpected response code: 200
程序员文章站
2022-06-18 16:03:22
服务器前提条件:1、iis7.5及以上2、.net framework 4.5及以上3、应用程序的托管管道模式必须为集成模式4、需要开启websocket协议请在 web.config 中设置以下配置...
服务器前提条件:
1、iis7.5及以上
2、.net framework 4.5及以上
3、应用程序的托管管道模式必须为集成模式
4、需要开启websocket协议
请在 web.config 中设置以下配置开关:
<system.web>
<httpruntime targetframework="4.5" />
</system.web>