Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
38 views

Application.properties custom.async.executor.corePoolSize=3 custom.async.executor.maxPoolSize=5 custom.async.executor.queueCapacity=2 custom.async.executor.threadNamePrefix=serverAsyncThread- custom....
Laolu Ade OG CSR's user avatar
0 votes
1 answer
58 views

Problem I'm getting a CORS error when connecting to a WebSocket endpoint through Spring Cloud Gateway with Nginx as a reverse proxy (it works on my local env without nginx): Access to XMLHttpRequest ...
yassine raddaoui's user avatar
0 votes
0 answers
49 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
45 views

I’m trying to implement authentication in a Spring Boot WebSocket (STOMP) application using a custom ChannelInterceptor. In my AuthChannelInterceptor, I validate a JWT token during the CONNECT command ...
oiiaooiiao's user avatar
0 votes
0 answers
30 views

Hi guys I need some help with WebsocketSTOMP in React-Native Android app and Metro. I can get the connection but no the STOMP handshake. Frontend DevTool console: Backend Terminal in Java SPring Boot:...
kuchar's user avatar
  • 21
0 votes
0 answers
34 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
0 votes
0 answers
44 views

I have a webscoket endpoint in SpringBoot that I'm trying to call from a React application, but no matters what I do the output in React is this: WebSocket connection to 'ws://localhost:8083/message/...
Daniel López's user avatar
1 vote
1 answer
87 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
29 views

I'm implementing private messaging with Spring WebSocket STOMP, but messages sent via convertAndSendToUser() are not being delivered, while broadcast messages work fine. The client subscribes to /user/...
OmniCoder77's user avatar
0 votes
0 answers
26 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
92 views

I'm working on a WebSocket proxy microservice in Java, built using the org.java_websocket.* library. It connects to a remote server that streams VNC data. The goal is to allow clients—like noVNC—to ...
Adam's user avatar
  • 51
0 votes
0 answers
34 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
135 views

I'm building a Spring Boot chat application with: WebSocket (STOMP) endpoint (with message broker) Clients connect via STOMP and authenticate with JWT (sent as a STOMP Authorization header in the ...
valerii's user avatar
  • 13
1 vote
1 answer
67 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
45 views

I have an application with a websocket connection, but when I test it with the wscat tool I get a return saying "connection received [connection_id]" but when I try to make the connection ...
Matheus Castilho's user avatar
0 votes
0 answers
106 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
64 views

I am working on connecting my Ionic Angular application to a WebSocket on my Spring Boot application. My Spring Boot app uses Spring Security and is configured to authenticate WebSocket connections ...
Manuel's user avatar
  • 1
0 votes
0 answers
36 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
0 votes
0 answers
50 views

I have one websocket service that can be connected via ws://localhost:8080/poc/ws1. I have created Spring coud gateway which is hosted in localhost:7070 When I use below conguration, I could able ...
Happs's user avatar
  • 125
2 votes
0 answers
117 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
0 votes
0 answers
157 views

I'm trying to get the basic websocket working in Spring with Jetty, as covered here. At the time of the upgrade, runtime is reporting that the provider is null. java.lang.NullPointerException: Cannot ...
vadlan77's user avatar
1 vote
0 answers
94 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
45 views

Scenario I have Two Spring Boot services(service-a,service-b) and one front-end service. The front end service will connect to my service-a via STOMP Web Socket broadcast channel. When messages arrive,...
Kyaw Zayar Htun'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
1 answer
697 views

I have a simple Spring Boot app, using spring-security to control access to web socket topics. This is done using OAuth to authenticate users with a bearer token. Everything seems to work except I can'...
Jackie's user avatar
  • 24k
0 votes
2 answers
358 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
16 views

SPRINGBOOT BACKEND: @Transactional private void acceptPairingRequest(JSONObject jsonObject, WebSocketSession receiverSession) throws IOException, InterruptedException { JSONObject finalPairing = ...
Rohit Padile's user avatar
0 votes
0 answers
91 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
183 views

I'm using org.springframework.security:spring-security-messaging. To start with I have a project that is successfully authenticating using oauth... spring: security: oauth2: resourceserver:...
Jackie's user avatar
  • 24k
1 vote
1 answer
200 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
-1 votes
1 answer
34 views

I tried to integrate websockets to my spring application and for beggening i tried to just copypast spring's tutorial but somewhy i can't connect to websocket by using postman, but when i'm using ...
EnGold's user avatar
  • 15
0 votes
0 answers
124 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
1 vote
1 answer
506 views

I'm working on a project where we are evaluating how much data load a spring service will potentially handle via web socket and how much buffer size should be set. I understand when the web socket ...
Dimitris Kremezis's user avatar
0 votes
2 answers
440 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
1 vote
0 answers
85 views

Currently, I have Set up spring websockets over STOMP and messages are routed to RabbitMQ and it acts as an external broker. My current setup looks like below: @Override public void ...
Ali Ahmad's user avatar
  • 336
0 votes
1 answer
150 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
0 votes
2 answers
2k views

I'm using Spring WebSocket with STOMP to establish a WebSocket connection between my server and clients, which are using stomp.js on the frontend. My application works well when the tab is active, but ...
Pushpak's user avatar
  • 159
1 vote
0 answers
103 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
2 votes
1 answer
323 views

I followed this Spring Boot tutorial on Websockets implementing STOMP protocol which works perfectly on its own. I wanted to connect it to a frontend app which uses Expo so I am using STOMPjs After ...
noor soreti's user avatar
0 votes
0 answers
88 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
0 answers
109 views

I am facing web socket disconnection problem with 1006 on production environment. I unable to find the exact problem. We tested without firewall restriction on GCP , that also not working as expected. ...
Ajith Deivam's user avatar
0 votes
1 answer
121 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
1 answer
169 views

I created a Spring WebSocket server. I want to real-time connection with Unity webgl. It works well when I connect with postman. It works well on Unity Game Scene. async void Start() { Debug....
kim's user avatar
  • 11
1 vote
0 answers
244 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
83 views

I'm developing an application which require WebSocket connections. I have developed a Spring Boot microservice called notification-service which holds web socket configurations. Further, I have ...
iuhettiarachchi's user avatar
2 votes
0 answers
257 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
1 answer
45 views

My Front end client is not receiving the messages from the server. Upon subscribing to the chat it needs to receive a message from the server but this is not received. I've tried the client ...
user3859651's user avatar
0 votes
0 answers
146 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
0 votes
1 answer
1k views

I have embedded Jetty 10 and Spring 5.3.37 (non-spring boot) application on it. While integrating WS server (non-sockjs/stomp) into the application I faced the idle timeout issue, it's too short for ...
VirtualVoid's user avatar
  • 1,043
0 votes
1 answer
357 views

In upgrading a Spring Boot 2 application to Spring Boot 3 (Spring 5 to Spring 6) it fails to start due to WebSocket configuration. @Configuration @EnableWebSocketMessageBroker public class ...
mnd's user avatar
  • 2,829

1
2 3 4 5
30