Top "Stomp" questions

STOMP is a simple interoperable protocol designed for asynchronous message passing between clients via mediating servers.

Does Spring @SubscribeMapping really subscribe the client to some topic?

I am using Spring Websocket with STOMP, Simple Message Broker. In my @Controller I use method-level @SubscribeMapping, which should subscribe …

spring stomp messagebroker spring-websocket spring-messaging
Automatic reconnect with Stomp.js in Node.js application

I'm working with an application that is written in Node.js and Express, and I'm trying to use the Stomp.…

javascript node.js express stomp
How to disable debug messages on sockjs- STOMP

I have the follow situation: var options = { protocols_whitelist : [ "websocket", "xhr-streaming", "xdr-streaming", "xhr-polling", "xdr-polling", "iframe-htmlfile", "iframe-eventsource", "iframe-xhr-polling" ], debug : false }; var …

javascript websocket socks stomp
Spring 4 STOMP Websockets Heartbeat

I can't seem to find a good resource on how to send heartbeats to clients using websockets in Spring! I …

java spring websocket stomp
Where "user" comes from in convertAndSendToUser works in SockJS+Spring Websocket?

I would like to understand how convertAndSendToUser works in Spring SockJS+Websocket framework. In client, we would connect as stompClient.…

java spring stomp spring-websocket sockjs
Websockets over HTTPS with spring boot 1.0.0.RC5 and tomcat 8.0.3

I have a working example of the web socket (ws) non secure implementation application using spring boot 1.0.0.RC5 and tomcat 8.0.3. …

spring security websocket spring-boot stomp
How to get session id on the client side? (WebSocket)

Is there any way to do this? Client side: function connectWebSocket() { var socket = new SockJS('/socket'); stompClient = Stomp.over(…

spring websocket stomp sockjs
Spring 4 websocket without STOMP,socketjs

I am trying to test websocket without using socketjs library and also i don't want to add any stomp connection. …

spring websocket stomp spring-4 spring-websocket
How to get Session Id in Spring WebSocketStompClient?

How to get session id in Java Spring WebSocketStompClient? I have WebSocketStompClient and StompSessionHandlerAdapter, which instances connect fine to websocket …

java spring session stomp spring-websocket
How to get/set the principal and session attributes from Spring 4 stomp websocket methods

I'm doing experiments with Spring 4 websockets and stomp, and I have a hard time figuring out how to get/set …

spring websocket stomp spring-messaging spring-websocket