I get a status 200 when connecting to the websocket, but it is an error?

末鹿安然 提交于 2019-11-27 07:48:16

Please check http://procbits.com/connecting-to-a-sockjs-server-from-native-html5-websocket!

After you append /websocket (to your URL), it will give you the error

Failed to parse Origin header value [null]

;) , which then will in turn lead you to that link.

You'll have to add .setAllowedOrigins("*") to your addHandler() method, and then it could finally work!

Have a look at the specification . The server should respond with 101 to signal protocol change from http to ws.

As my another answer:[https://stackoverflow.com/a/53272666/2930417][1]

I use springboot 2 +STOMP。

remove .withSockJS(),then everything is ok.

I don't know the reason,but works for me.

Please check that if 'ws://localhost:32768/DspClusterWebServices/myHandler' is correct.

For those guys like me who use angular + springboot and got this error. please check if you have enabled the redirect or forward all non api endpoint request back to index.html. like:

@RequestMapping(value = "/**/{[path:[^\\.]*}")
    public String redirect() {
        // Forward to home page so that route is preserved.
        return "forward:/index.html";
    }

If you do, disable it and you will get 101

Don't know if this is too late but a solution that I stumbled upon is simply appending the string /websocket after the websocket endpoint that you declared in the spring boot server. This will help keep both the forwarding logic and connect and establish a websocket connection.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!