stomp-js
stomp-js copied to clipboard
Implementation of the STOMP protocol in node.js
When install the package using npm and loading it with webpack here is what I have: ``` Module not found: Error: Cannot resolve module 'net' in /Users/gottfrois/Code/TextMaster.com/node_modules/stomp/lib @ ./~/stomp/lib/stomp.js 24:10-24...
Stomp consumer doesn't support [wildcards](http://activemq.apache.org/wildcards.html) ```javascript var stomp_args = { host: "localhost", port: 61613, debug: false } var headers = { destination: "/queue/PRICE.STOCK.>", ack: "client-individual" }; var client = new...
D:\snalla\nodejsexp\mqExp\node_modules\stomp\lib\stomp.js:54 headers[header[0].trim()] = header[1].trim() ^ TypeError: Cannot read property 'trim' of undefined at parse_headers (D:\snalla\nodejsexp\mqExp\node_modules\stomp\lib\stomp.js: 54:46) at parse_frame (D:\snalla\nodejsexp\mqExp\node_modules\stomp\lib\stomp.js:76 :15) at Socket. (D:\snalla\nodejsexp\mqExp\node_modules\stomp\lib\stom p.js:160:28) at Socket.emit (events.js:107:17) at readableAddChunk (_stream_readable.js:163:16)...
Is there way to grantee that message send by returning callback ``` var client = new stomp.Stomp(stomp_args); client.send(headers, true); ``` something like that ``` // callback client.send(headers, true, function(err,reply) {...
client.js:121 Uncaught TypeError: net.createConnection is not a function at StompClient.connect (client.js:121) at new RequieComponent (requireComponent.js:52) at eval (ReactCompositeComponent.js:294) at measureLifeCyclePerf (ReactCompositeComponent.js:75) at ReactCompositeComponentWrapper._constructComponentWithoutOwner (ReactCompositeComponent.js:293) at ReactCompositeComponentWrapper._constructComponent (ReactCompositeComponent.js:279) at ReactCompositeComponentWrapper.mountComponent (ReactCompositeComponent.js:187)...
the below is the error code: ``` stomp.js:25 Uncaught Error: Cannot find module "tls" at webpackMissingModule (stomp.js:25) at eval (stomp.js:25) at Object. (bundle.js:2614) at __webpack_require__ (bundle.js:677) at fn (bundle.js:88) at...
The on('data') handler has apparent spec violation and subsequent fix that introduces a regression. > The body is then followed by the NULL octet. The examples in this document will...
Attempted to send keepAlive and timeout on socket to enable reconnecting on the connection end, but this did not seem to work with ActiveMQ (I think the timeout was working,...
Hi,All: I'm using activeMQ and this client, but time to time, I found that the client lost the connection without any notification, and I checked activeMQ doc ,it does support...
Hi I am trying to connect to a TIBCO queue. I am using the below code as suggested by the documentation. But i am getting a error as shown below.Please...