You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's been a long time with no reply to the previous but I'm getting the same thing in node-red even with a simple insert to a queue, then read the same queue to a debug node. Here is my sample ....
The topic message (body) is empty
ActiveMQ version - 5.11.0
Am using log4j JMS appender and pushing log messages to a topic. And running stomp client in node js app
When a new log message arrives, the stomp client app responds , but the body is empty
var Stomp = require('stomp-client');
var destination = '/topic/ic';
var client = new Stomp('127.0.0.1', 61613, '', '');
client.connect(function(sessionId) {
client.subscribe(destination, function(body, headers) {
console.log('Mesage');
console.log(body); //This is empty
});
});
The text was updated successfully, but these errors were encountered: