Re: Messaging between activemq-cpp and websocket

2019-03-23 Thread elk
Well, the solution is quite simple: the messages are not transmitted as /TextMessage/ objects in the sense of activemq-cpp, they are /ByteMessage/'s. Casting the message to a ByteMessage, read the bytes and creating a string from it solved it. Unfortunately neither the readString() nor the readUTF

Messaging between activemq-cpp and websocket

2019-03-17 Thread elk
Hello, I am new to activemq and activemq-cpp. My goal is to setup queues for communication between a web browser (over websocket/STOMP) and a C++ program. Since there is some additional business logic, I've setup a springboot application with embedded ActiveMQ server and configured the Websocker S