当前位置:   article > 正文

Websocket-Error during WebSocket handshake: Unexpected response code: 403解决方案

error during websocket handshake

问题:

webscoket.js:26 WebSocket connection to ‘ws://localhost:8088/DreamWeb/ctrl/websocketServer.do?userId=180627211146gYHGYcQlcBFRqW8nRUC’ failed: Error during WebSocket handshake: Unexpected response code: 403

在这里插入图片描述

问题分析:

一,WebSocket 设置为不允许跨域。

二,服务器/代理服务器不支持WebSocket

解决方案

Java

在websocket连接注册时设置允许跨域
在这里插入图片描述

服务器设置(以Nginx为例 )

map $http_upgrade $connection_upgrade {
		default upgrade;
		'' close;
	}
upstream websocket {
		ip_hash;
       server 127.0.0.1:9090 weight=2;
       server 127.0.0.1:9091 weight=2;
}

server {
        listen       8088;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
			proxy_pass http://websocket;
			proxy_http_version 1.1;
			proxy_set_header Origin '';
			proxy_set_header Upgrade $http_upgrade;
			proxy_set_header Connection "Upgrade";
			proxy_connect_timeout 1800; 
            proxy_read_timeout 900; 
            proxy_send_timeout 900; 
        }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/179237
推荐阅读
相关标签
  

闽ICP备14008679号