You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Am getting 404 Not found exception while trying to connect to stomp server through url http://hostname:15674/stomp.
Rabbit MQ version - 3.8.1
Erlang Version - 22.1
But the same URL is working fine in RabbitMQ 3.5.3 and Erlang 18 version.Am getting a message like "Welcome to Sockjs" after hitting the Stomp server URL
RabbitMQ doesn't use SockJS server as backend anymore - they moved to cowboy http / websocket server. Don't need to use SockJS client, use the standard WebSocket
I am using below code to connect with RabbitMQ Stomp
var ws = new SockJS('http://127.0.0.1:15674/stomp');
var client = Stomp.over(ws);
But I get below error in the browser console
GET http://localhost:15674/ws/info 404 Not Found
Please suggest
The text was updated successfully, but these errors were encountered: