StompProtocolAndroid icon indicating copy to clipboard operation
StompProtocolAndroid copied to clipboard

STOMP protocol via WebSocket for Android

Results 102 StompProtocolAndroid issues
Sort by recently updated
recently updated
newest added

Android cant send message, to Spring Boot 2.2.7.RELEASE. Session gets connected, but while sending the message, do not get any error/callback. and also websocket server does not get invoked Tried...

This happened when I was getting a lot of messages from the server. I will post the payload once I'm able to reproduce it. ``` FATAL EXCEPTION: OkHttp https://notifications-service-prod06.ol.epicgames.com/... Process:...

Fix parsing messages of type ERROR from STOMP socket. The exception is "StompClient: Error parsing message - java.util.NoSuchElementException" There should be a check that we have two empty lines in...

SocketUtils.instance.stompClient!!.topic("topic.58.rooms") .subscribeOn(Schedulers.io()) .observeOn(AndroidSchedulers.mainThread()) .subscribe({ topicMessage -> println("topicMessage : ${topicMessage.payload}") //this block is not working }, { throwable -> throwable.printStackTrace() }) //code is written in kotlin response from server is coming,...

I'm looking for retrieving the randomUUID that is being sent to the server during stomp connection. The reason is that I need it as a reference for few actions. As...

val dispTopic = mStompClient!!.topic("/user/balance", subscribeHeaders) .subscribe({ it -> Log.d("Storm", "data") }) After subscription to topic I am not able to receive data. Data prints in the console but not prints...

According to the [STOMP protocol specification 1.2](https://stomp.github.io/stomp-specification-1.2.html#STOMP_Frames); each header should be terminated with an EOL. Currently, the regex for headers stops if it sees a `:`. This pull request fixes...

When I connect my spring boot based stomp connection with using any Java script based client it connects within 100 to 200 mili second but with this client it took...

StompProtocolAndroid is the last dependency in an app I am working on which does not support RxJava 3. Since the RxJava 2 end-of-life happened last February, removing the outdated library...

Fixed heartbeat failed not working and default no boundary. ``` switch (lifecycleEvent.getType()) { case FAILED_SERVER_HEARTBEAT: if(failed_heartbeat_times.incrementAndGet() >= 3) { toast("Stomp failed server heartbeat"); ... } break; } ```