I want to establish a STOMP
connection between my server and a java test client. The destination of the websocket would be something like localhost:1234/data/websocket/
.
None of the java stomp implementations seem to support such an address format. Is there a way to create a STOMP connection to such an endpoint?
Finally I decided to use the Spring STOMP
client. It was the only client I found, which was able to connect to such a specific endpoint.