-
**Describe the bug**
I have set up a simple websocket application(https://github.com/spring-guides/gs-messaging-stomp-websocket) and deployed on both tomcat 10 and OpenLiberty.
When I try to conne…
-
ERROR in ./node_modules/stompjs/lib/stomp-node.js 11:8-22
this error comes from node modules inside stomp. how to fix this if anyone knows, please leave comment below.
as soon as it's urgent for m…
-
Hello, yesterday I've made android client to connect with ws but today something happend and got this error:
`I/dalvikvm: Could not find method org.java_websocket.client.WebSocketClient.setSocket, re…
-
It's good to see I wasn't the only one having some real issues with Spring's STOMP client.
Have you been able to figure out how to do automatic reconnects?
I had hoped Spring would have somethin…
-
```
What steps will reproduce the problem?
1. make the reconnect time larger (from default 5 to 30 times)
2. connect stomp
3. un-plug cable, wait for 3 to 4 seconds, reconnect
What is the expected o…
-
I tried using the approach I use in Stomp JS but it does not work here:-
```c#
var subsHeaders = new Dictionary
{
{ "x-queue-name", "newqueue"},
{ "x-message-ttl", "60000" },
{"'x-e…
-
https://stomp.github.io/stomp-specification-1.2.html
-
This may be a more direct duplex way of interacting in comparison to HTTP/Rest,
so it feels more like the pipe-based approach without actually using the brittle pipes for it.
* lower communication…
-
mStompClient = Stomp.over(WebSocket.class, "wss://localhoast:8080/websocket");
mStompClient.topic("/updates/" + userId)
.subscribe(new Action1() {
…
-
I have downloaded the server example but I keep getting the same error. I have used the following server configurations:
```
@Configuration
@EnableWebSocket
@EnableWebSocketMessageBroker
class …