vertx-stomp icon indicating copy to clipboard operation
vertx-stomp copied to clipboard

STOMP client/server implementation

Results 23 vertx-stomp issues
Sort by recently updated
recently updated
newest added

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...

bug
help wanted

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...

bug
help wanted

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...

bug

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.

enhancement

### 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...

bug

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));...

enhancement

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....

enhancement