Hello,
var websocket = new SockJS('https://server:15674/stomp');
var stompClient = Stomp.over(websocket);
stompClient.connect(headers, onConnect, onError);
var subscription = stompClient.subscribe("/exchange/my-event-exchange", function(event) {...}, {'x-match': 'all', abc: 'def', zzz: '124', id: '82979d0c-bc37-4bef-920f-45e99c0c7e43', persistent: true});
A SUBSCRIBE frame is successfully sent, but the filter headers ("abc" and "zzz" here) are essentially ignored.
DEBUG: >>> SUBSCRIBE
abc:def
zzz:125
x-match:all
id:82979d0c-bc37-4bef-920f-45e99c0c7e43
persistent:true
destination:/exchange/my-event-exchange
Instead of receiving only messages that match that pattern, the subscription receives all messages sent to the exchange.
Is what I'm attempting currently possible?
Thanks!