Top "Stomp" questions

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

Spring STOMP over WebSockets not scheduling heartbeats

We have a Spring over WebSockets connection that we're passing a CONNECT frame: CONNECT\naccept-version:1.2\nheart-beat:10000,10000\n\n\u0000 Which …

stomp spring-websocket
Send Notification to specific user in spring boot websocket

I want to send notification to specific client. e.g username user @Configuration @EnableWebSocketMessageBroker public class WebSocketConfiguration extends AbstractWebSocketMessageBrokerConfigurer { @Override …

java spring spring-boot stomp spring-websocket
Orbited launch problems: " ConfigParser.NoSectionError: No section: 'formatters' "

I'm trying to get Orbited started, but unfortunately I'm running into more than a few problems! First, problems with easy_…

python django comet stomp orbited
ActiveMQ: Openwire vs AMQP vs Stomp

ActiveMQ is a Message Broker that supports many different protocols such as Openwire, AMQP and Stomp. It is really confusing …

java activemq amqp stomp
Spring, how to broadcast message to connected clients using websockets?

I am trying to use websockets in my app. I have followed this tutorial: http://spring.io/guides/gs/messaging-stomp-websocket/ …

java spring stomp
How does Spring WebSocket send message to a specific user?

I am reading the book Spring in Action 4 to work with STOMP messaging over WebSocket. Suppose the user destination prefix …

spring websocket stomp
Check auth while sending a message to a specific user by using STOMP and WebSocket in Spring

I'm developing a realtime notification system in Spring 4 by using a build-in Message Broker, and STOMP over WebSocket. I would …

spring websocket stomp spring-messaging
How to send ERROR message to STOMP clients with Spring WebSocket?

I am using Spring's STOMP over WebSocket implementation with a full-featured ActiveMQ broker. When users SUBSCRIBE to a topic, there …

java activemq stomp spring-websocket spring-messaging
How to intercept connection and subscription with Spring Stomp

I need to control connection/disconnection and subscriptions/unsubscriptions of stomp clients in my websocket spring server. This is the …

websocket stomp spring-websocket
activemq how to configure to work with stomp in python

I have activemq installed and running locally, but when I run the following script, I get an error: #!/usr/bin/…

python activemq stomp