Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

stomp.ack is yielding Error: Unexpected ACK received for message-id

I have tried possible combinations and searched over the internet but couldn't make this work, error is:

Error: Unexpected ACK received for message-id

It will be really helpful if anyone can point out if there is some conceptual mistake in following code:

var Stomp = require('stomp-client');
var client = new Stomp(host, port, user, pass);
client.connect(function(sessionId) {
    var subId = client.subscribe(/topic/foo, function(body, headers) {
        client.ack(headers['message-id'], subId);
        var message = ['abc', 'def'];
        client.publish(`/topic/bar`, `some_message`);
    }, {ack: 'client'});
    client.on('error', function(er) {
        console.error(er);
    });
});
like image 274
Zeeshan Hassan Memon Avatar asked Nov 07 '22 21:11

Zeeshan Hassan Memon


1 Answers

You are maybe using stomp-1.2 where the acknowledment header is not message-id (stomp-1.0), but ack:

client.ack(headers['ack'], subId);
like image 65
473183469 Avatar answered Nov 15 '22 06:11

473183469