stomp-js
stomp-js copied to clipboard
Implementation of the STOMP protocol in node.js
Hi, I am a bit surprised that this is not working and I am wondering if it is me doing something wrong. Problem is when receiving a large message (plain/text),...
Added Features: - subscribe/unsubscribe now can take an array of destinations - test coverage improved; some unit and integration tests (still more can be done here) - working example app...
Hi Ben, This line was causing errors for me every now and then. I think the below code fixes the issue. Thanks, Kai.
I've noticed that ie8 fails when it tries to send a message. When the function sizeOfUTF8 is called ie8 dies on the encodeURI(s).split(/%..|./).length-1 When split is called it returns nothing.
The reconnect pull request seems to be extremely useful to several people. Just wondering what the status of stomp-js is.
As per instructions, http://stomp.github.io/stomp-specification-1.1.html#DISCONNECT "To do a graceful shutdown, where the client is assured that all previous frames have been received by the server, the client should send a DISCONNECT...
Hi, I just tried this and its great. But I enabled activemq.prefetchSize and set it to only fetch 1 item, but it still took all 35 msgs off the queue....
The following code will cause node to terminate on a TLS authentication error: ``` javascript var stomp = new Stomp(args); stomp.on('error', function (err) { console.error("Stomp Error: " + err); });...
Make it actual software. Write some dang tests. But seriously, just started a rewrite TDD'ing this. It will be loads better. Promise. xoxo, me
I'm sending the following bytes from java: 45,-113,4,-120 and on the node.js side I get: 45 65533 4 65533 for (i=0;i