Top "Spring-websocket" questions

A Spring Framework module that support WebSocket-style messaging in web applications (native websocket and with SockJS support), including use of STOMP as an application level WebSocket sub-protocol.

Spring WebSocket: Handshake failed due to invalid Upgrade header: null

I am using wss (secured web sockets) with spring from backend and STOMP for javascript client. Does anyone knows why …

spring websocket spring-websocket
What are the pitfalls of using Websockets in place of RESTful HTTP?

I am currently working on a project that requires the client requesting a big job and sending it to the …

rest http websocket client-server spring-websocket
Stomp over socket using sockjs can't connect with Spring 4 WebSocket

Trying to use Spring 4 WebSocket with STOMP over socket using sockjs. And i faced a problem. My configuration: websocket.xml …

java spring-mvc stomp sockjs spring-websocket
Disconnect client session from Spring websocket stomp server

I've searched quite a bit and been unable to find this: Is there a way that a spring websocket stomp …

spring spring-boot stomp spring-websocket
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
How can I send a message on connect event (SockJS, STOMP, Spring)?

I am connection through SockJS over STOMP to my Spring backend. Everything work fine, the configuration works well for all …

spring spring-websocket sockjs
Send Message to all clients via SimpMessagingTemplate in ServletContextListener

I'm using the Spring framework and I have a working websocket controller that looks like this: @Controller public class GreetingController { @…

java spring spring-mvc websocket spring-websocket
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
Spring Async issue when upgrading from 4.2.0.RC3 to 4.2.0.RELEASE

I've a web application using the spring(4.2.x) artifacts spring-webmvc, spring-messaging, spring-websocket I've the below @Enable* annotations in my spring …

java spring spring-mvc executorservice spring-websocket
Spring Websocket - How can I detect client disconnect

I am new to spring I have this class : public class Server extends TextWebSocketHandler implements WebSocketHandler { WebSocketSession clientsession; @Override public …

spring websocket spring-websocket