欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

关于.NET WebSocket connection to 'ws://xxx' failed: Error during WebSocket handshake: Unexpected response code: 200

程序员文章站 2022-02-14 11:10:03
服务器前提条件:1、iis7.5及以上2、.net framework 4.5及以上3、应用程序的托管管道模式必须为集成模式4、需要开启websocket协议请在 web.config 中设置以下配置...

服务器前提条件:

1、iis7.5及以上

2、.net framework 4.5及以上

3、应用程序的托管管道模式必须为集成模式

关于.NET WebSocket connection to 'ws://xxx' failed: Error during WebSocket handshake: Unexpected response code: 200

 

4、需要开启websocket协议

 

关于.NET WebSocket connection to 'ws://xxx' failed: Error during WebSocket handshake: Unexpected response code: 200

 

请在 web.config 中设置以下配置开关:

 

<system.web>
  <httpruntime targetframework="4.5" />
</system.web>