vertx-stomp
vertx-stomp copied to clipboard
STOMP client/server implementation
Hi, I'm testing a few payloads with [krossbow](https://github.com/joffrey-bion/krossbow) STOMP client, and received an error on a SUBSCRIBE frame with content-length: 0 header: ``` 13:03:45 [vert.x-eventloop-thread-1] ERROR io.vertx.core.impl.ContextBase - Unhandled exception...
I'm trying to send a JSON payload with websocket transport from server to client. The message is always sent as binary, even though the payload is text. This may cause...
Follow up on https://github.com/vert-x3/vertx-stomp/issues/85 : support for websocket text payloads.
### Questions Do not use this issue tracker to ask questions, instead use one of these [channels](https://vertx.io/community/). Questions will likely be closed without notice. ### Version Which version(s) did you...
Motivation: I put forward an issue #89 . In order to get address on the server side, we can meeting needs by exposing the addresses from StompServerConnection.
As the title suggests, why do not expose NetSocket in StompServerTCPConnectionImpl.java, I would like to obtain NetSocket at server side to get localAddress and remoteAddress, but no api expose NetSocket.
### Questions The server send an error frame, then the client occur exception "Size must be > 0" ### Version 4.4.3~4.4.5 ### Context I encountered an exception which looks suspicious...
how stompclient to connect a websocket variable Hi friends: I have the same problem, how stompclient to connect a websocket variable? thanks like : ``` StompClient client = StompClient.create(vertx,new StompClientOptions().setHost("localhost").setPort(1234));...
Add WebSocket support for StompClient
#### Describe the feature We have a STOMP server, that is created on some path, for example localhost:8080/watchApi/myStompServer It is often case when API Gateway approach used in microservice communication....