python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Spring Boot 2.6.x (and Spring Security) + Websocket + Angular 13 (rx-stomp)
my application is structured as follows:
Spring Boot
WebSocket Config
@Override
public void configureClientInboundChannel(ChannelRegistration registration) {
registration.interceptors(new ChannelI...
fuerteVentura22
Votes: 0
Answers: 0
WebSocket connection to 'wss://...' failed
I am trying to establish websocket connection to the spring boot web server deployed in azure from anuglar application.
But connections are not getting success every-time.
It always fail for first tim...

Ravikumar
Votes: 0
Answers: 0
How do I send headers in the initial handshake with a Spring websocket server?
I set up a Spring WebSocket server with the following handler:
public class HandshakeHandler extends DefaultHandshakeHandler {
@Override
protected Principal determineUser(ServerHttpRequest req...

Wais Kamal
Votes: 0
Answers: 2
stompjs how to get status after sending message
i'm creating a chat application with spring boot websocket, STOMP and stompjs, here is my js code:
<script src="https://cdnjs.cloudflare.com/ajax/libs/sockjs-client/1.1.4/sockjs.min.js"&g...

SoT
Votes: 0
Answers: 1