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

Hello I've been facing a weird problem the past few days. I send out a demo of my app to a few people. however for around 75% of the people the demo didn't work, while for the other 25% it works great....
Christian2B's user avatar
0 votes
0 answers
34 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
133 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
45 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
0 votes
1 answer
182 views

After moving from quarkus-websocket to quarkus-websockets-next, any HTTP GET to a @WebSocket path now errors with "Connection" header must be "Upgrade" This is because the new ...
BATMAN_2008's user avatar
  • 3,662
0 votes
0 answers
39 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
1 answer
291 views

I am trying to implement server, as java plain application, where clients could connect to a web socket. The goal is to connect client to a websocket via this url: ws://localhost:4550/api/myWebSocket ,...
Biggy Poopa's user avatar
2 votes
0 answers
46 views

I'm working on a Servlet application using WebSocket with a Tomcat 10.1 server. My goal is to create a one-player (host) game via a WebSocket and allow other players to join this game in real time ...
samuel silva's user avatar
1 vote
1 answer
154 views

Why this code does not receive any message: public class MainClass { public static void main(String[] args) throws Exception { CountDownLatch latch = new CountDownLatch(1); try (...
mah454's user avatar
  • 1,948
0 votes
1 answer
67 views

I have WebSocket server: @ServerEndpoint(value = "/demoApp") public class MyWebSocketServer { @OnMessage public String onMessage (String message, Session session) throws IOException {...
Okneas's user avatar
  • 21
2 votes
1 answer
387 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
1 vote
0 answers
25 views

I'm using the ESP8266 Wi-Fi SoC to send data to a server, but the connection intermittently drops during normal operation. For instance, from the PowerShell prompt, I can see the counter repeatedly ...
Wenner's user avatar
  • 11
0 votes
0 answers
175 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
568 views

I have found a way to set the idle timeout for Jetty 11 WebSocket connections programmatically by invoking factory.setIdleTimeout in an implementation of the JettyWebSocketServlet.configure(...
Christian Grün's user avatar
1 vote
1 answer
104 views

Within my WebSocketConfig class: @Configuration @EnableWebSocketMessageBroker class WebsocketConfig(<...>) I override: @Bean(name = ["csrfChannelInterceptor"]) fun ...
Captain Jacky's user avatar

15 30 50 per page
1
2 3 4 5
35