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.

Test websocket in spring boot application

I don't understand how properly write a test case for websocket in springboot application. I have a class that implement …

java spring spring-boot spring-websocket java-websocket
How to send custom message to custom user with spring websocket?

I'm new to spring websocket. I want to send product changes to clients. For this, I want to do it …

java spring spring-boot spring-websocket sockjs
Self-Connect to Websocket Spring server from JUnit test

I have an app that exposes Websocket/SockJS/Stomp server endpoints and would like to run a JUnit tests that …

java spring junit websocket spring-websocket
Why does sockJS add a '/info' to a given websocket url path

I want to open a websocket port with a "webapp/socket.do" path. When I use SockJS and try to …

websocket spring-websocket sockjs java-websocket
Spring Stomp @SendToUser with unauthenticated user not working

I'm trying to respond to an unauthenticated user using @SendToUser. Spring 4.1.1 I'm using a newly created Spring Boot application and …

spring spring-mvc stomp spring-websocket spring-messaging
Socket.io with Spring MVC

Have someone tried to make a friendship between socket.io and spring mvc? I've found many examples with using of …

websocket spring-websocket
Spring security websocket and HTTP authentication/authorization

Summary I would like to implement websocket communication over STOMP. Authenticate The user in the time of the first (HTTP …

spring spring-security spring-boot spring-websocket spring-messaging
Unable to get Session in Spring Controller when using Websockets

I am using Websockets SockJS with Spring MVC Framework. I tried the Stock Ticker example that's working fine but now …

session sockjs spring-websocket
Websocket keep track of connections in Spring

Today I've searched a couple of hours for an implementation or tutorial in how to keep track of websocket connections …

java spring stomp spring-websocket sockjs
spring-websockets how to send a parameter on open connection

I was building a spring boot application for web socket connection using TextWebSocketHandler and overriding handleTextMessage. But I have a …

java spring spring-boot spring-websocket java-websocket