Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
37 views

I'm working on a Spring Boot application using STOMP over WebSocket. In my UI client app, I receive the CONNECTED frame like this: ["CONNECTED\nversion:1.2\nheart-beat:0,0\n\n\u0000"] ...
Sachin's user avatar
  • 1
0 votes
0 answers
85 views

i am working on JWT Authentication for websockets in springboot. In my JWT filter for WS, I found that Principal is getting null while using other stomp commands such as SEND, SUBSCRIBE. My filter ...
Swapnil's user avatar
0 votes
0 answers
30 views

I am using WebSocket with a STOMP client in Spring Boot (I’ll share the configuration file below). I also have an interceptor for authentication control. For connections coming through STOMP, ...
Sebuhi Huseynov's user avatar
1 vote
1 answer
84 views

I’m using a custom WebSocketChannelInterceptor (implements ChannelInterceptor) to handle authentication during the CONNECT STOMP command. The interceptor extracts and validates a JWT token from the ...
Kvanzi's user avatar
  • 13
0 votes
0 answers
21 views

I would like to send message to /queue/errors/{userId}, when user is not in the group and also I would like to reject message to group. Problem is how to send message to /queue/errors/{userId} without ...
Wierzba's user avatar
  • 11
0 votes
0 answers
27 views

I’m trying to implement WebSocket support in my Spring-based backend using STOMP over SockJS. The WebSocket connection is established successfully, but messages published from the backend to /queue/...
Siddique Ansari's user avatar
1 vote
1 answer
60 views

I'm trying to use SpringConfigurator to configure websocket endpoint. In theory, it should be as simple as: @ServerEndpoint(value = "/my-endpoint", configurator = SpringConfigurator.class) ...
Michał Sobkiewicz's user avatar
0 votes
0 answers
102 views

I'm trying to make a WebSocket connection in my application using angular and springboot, I have 2 configuration classes, one called UploadSocketHandler and WebSocketConfig. And I'm getting the ...
Matheus Castilho's user avatar
0 votes
0 answers
35 views

I have an Angular fontend application with a Spring Boot backend that uses websockets over Stomp. The app can successfully send websocket messages from the host to the browser. I need to now send ...
plex4r's user avatar
  • 373
2 votes
0 answers
116 views

I am implementing WebSockets using Spring Boot with STOMP for real-time notifications in my application. My setup includes a WebSocket configuration, security configuration, and a WebSocket handler ...
Charfeddine Mohamed Ali's user avatar
1 vote
0 answers
92 views

I am have been building the One to One Chatting Application using Spring boot and React JS. I am getting an issue when I am sending the message from one user is another. As I making one to one ...
Aditya verma's user avatar
0 votes
0 answers
104 views

Trying to follow the documentation I would like to send a message to the user's destination and subscribe to it from a browser. The full demo is available here but basically I have @MessageMapping(&...
Jackie's user avatar
  • 24k
0 votes
2 answers
331 views

Can you please help me on how can I handle ping messages when extending a websocket handler? Currently I am extending the Spring's AbstractWebSocketHandler, but even though I see that there exists ...
Abubakr Shoaliev's user avatar
0 votes
0 answers
90 views

For the full repo look here I have the following... @Bean fun messageAuthorizationManager( messages: MessageMatcherDelegatingAuthorizationManager.Builder ): AuthorizationManager<...
Jackie's user avatar
  • 24k
1 vote
1 answer
193 views

I have the following... @MessageMapping("/hello") @SendTo("/topic/greetings") @Throws(Exception::class) fun greeting(message: TestMessage): Greeting { However, when I run and send ...
Jackie's user avatar
  • 24k
0 votes
0 answers
110 views

I have been trying to configure the maximum payload size for binary and text messages for the Websocket server application in Spring Boot without any success. It's valid to mention I'm not using ...
Jose Rodriguez's user avatar
0 votes
0 answers
60 views

I am not able test by subscribing to a particular method using postman WebSocketConfiguration.java @Configuration @EnableWebSocketMessageBroker public class WebSocketConfiguration implements ...
K Kevin Gladson's user avatar
0 votes
2 answers
399 views

I'm facing a connection issue with my WebSocket setup using STOMP and ActiveMQ Artemis. The error message I receive in my logs: Received ERROR {message=[AMQ229014: Did not receive data from /192.0.2.1:...
abhishek yadav's user avatar
0 votes
1 answer
131 views

My On-Prem application details: Frontend - Reactjs deployed in 4 VMs [a,b,c,d] Backend - Spring microservices[Stateless] deployed in 4 VMs [w,x,y,z]] Database - Sql server Load Balancer - F5 CDN - ...
mac07's user avatar
  • 61
1 vote
0 answers
94 views

Title: Spring Boot WebSocket Test: HTTP 400 Error on WebSocket Upgrade Request Question: I'm trying to test a WebSocket endpoint in a Spring Boot application, but I keep getting an HTTP 400 error when ...
Manuel's user avatar
  • 11
0 votes
0 answers
84 views

I have a Springboot Microservice application. I have 4 microservices in my application. API-gateway, user-management, idm-service, engine-service. I am using react as frontend here. API-gateway ...
Aks 1316's user avatar
  • 382
0 votes
1 answer
119 views

I am trying to implement a Spring Integration app that listens to websocket messages from an external source and logs them to stdout. However as soon as I start my application it shuts down again, if ...
d.oelert's user avatar
  • 113
1 vote
0 answers
239 views

I'm using Spring Cloud Gateway to connect to a backend server using websockets. The route works, but the custom headers added by the destination server are not being returned to the client. How can I ...
Daniel Naves's user avatar
2 votes
0 answers
252 views

I am trying to connect my websocket spring server to a NATS as stomp broker @Override public void configureMessageBroker(MessageBrokerRegistry config) { config ....
Roie Beck's user avatar
  • 1,175
0 votes
0 answers
138 views

I have 2 websocket endpoints producing related messages: "ws://localhost:8032/posts" "ws://localhost:8032/comments" Comments are guaranteed to be published after a referred post ...
ishan's user avatar
  • 1,242

1
2 3 4 5
30