I have a WebSocket server that will receive STOMP through WebSocket messages from a client. The real client uses javascript for this . But I want to create my test client in Java (I don't know javascript very well). The problem is that the STOMP client libraries I found for Java, such as ActiveMQ and stompj, do not seem to support using WebSockets. I am completely unfamiliar with the concept of STOMP and STOMP over WebSockets, so I was wondering if I was missing something or there was no public support for this. Thanks.
source share