没有 SockJS 的 RabbitMQ Web STOMP
RabbitMQ Web STOMP without SockJS
是否可以在没有 SockJS 库的情况下设置 RabbitMQ Web STOMP 连接?
我试过 rabbitmq-web-stomp
插件但没有成功,因为服务器生成的初始响应是 Welcome to SockJS!
(这显然不是 STOMP基于消息)。
真的需要 SockJS 吗?它为游戏带来了什么(除了旧版浏览器支持)?
SockJS 协议 does support raw WebSocket clients 在 /websocket
路径下。
Any SockJS server complying with 0.3 protocol does support a raw WebSocket url. The raw WebSocket url for the test server looks like:
ws://localhost:8081/echo/websocket
You can connect any WebSocket RFC 6455 compliant WebSocket client to this url.
Rabbit 的实现也支持这一点。所以默认端点是:http://example.com:15674/stomp/websocket
.
是否可以在没有 SockJS 库的情况下设置 RabbitMQ Web STOMP 连接?
我试过 rabbitmq-web-stomp
插件但没有成功,因为服务器生成的初始响应是 Welcome to SockJS!
(这显然不是 STOMP基于消息)。
真的需要 SockJS 吗?它为游戏带来了什么(除了旧版浏览器支持)?
SockJS 协议 does support raw WebSocket clients 在 /websocket
路径下。
Any SockJS server complying with 0.3 protocol does support a raw WebSocket url. The raw WebSocket url for the test server looks like:
ws://localhost:8081/echo/websocket
You can connect any WebSocket RFC 6455 compliant WebSocket client to this url.
Rabbit 的实现也支持这一点。所以默认端点是:http://example.com:15674/stomp/websocket
.