You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 passing the following map during Stomp.over connection call
val map = hashMapOf<String, String?>()
map.put("accept-version","1.2");
map.put("version","1.2");
but that has no effect
mStompClient?.send("/topic/activity1", jsonObject.toString())?.subscribe() : this call does not send thge message to @MessageMapping.
Any help is appreciated?
The text was updated successfully, but these errors were encountered:
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 passing the following map during Stomp.over connection call
val map = hashMapOf<String, String?>()
map.put("accept-version","1.2");
map.put("version","1.2");
but that has no effect
mStompClient?.send("/topic/activity1", jsonObject.toString())?.subscribe() : this call does not send thge message to @MessageMapping.
Any help is appreciated?
The text was updated successfully, but these errors were encountered: