Giter VIP home page Giter VIP logo

Comments (8)

kum-deepak avatar kum-deepak commented on September 23, 2024

Thanks for the workaround. While this itself may not be a bug, the code should not refer to WebSocket as WebSocket is technically not needed to use this library.

from stompjs.

gempain avatar gempain commented on September 23, 2024

@kum-deepak very welcome ! I was surprised to see that the object was referenced globally. Why not use a reference to this._wesocket which seems to be referenced from the code in many places ?

from stompjs.

kum-deepak avatar kum-deepak commented on September 23, 2024

Fixed and released in 5.4.2.

from stompjs.

mohamed-rekiba avatar mohamed-rekiba commented on September 23, 2024

still exists v5.4.2

from stompjs.

kum-deepak avatar kum-deepak commented on September 23, 2024

Please share details about your setup and copy of console log.

from stompjs.

mohamed-rekiba avatar mohamed-rekiba commented on September 23, 2024

stompClient = function () {
const stompConfig = {
connectHeaders: {
login: "##########",
passcode: "############"
},
brokerURL: "#########",
reconnectDelay: 10000
debug: function (str) {
logger.trace([AMQ-PRODUCER] TRACE - ${str});
},
beforeConnect: function () {
logger.info([AMQ-PRODUCER] START CONNECT);
current_state = STATE.WAIT;
},
onConnect: function () {
logger.info([AMQ-PRODUCER] CONNECTED);
current_state = STATE.CONNECTED;
},
onDisconnect: function () {
logger.info([AMQ-PRODUCER] DISCONNECTED);
current_state = STATE.DISCONNECTED;
},
onStompError: function (err) {
logger.error([AMQ-PRODUCER] ERROR: ${JSON.stringify(err)});
current_state = STATE.ERROR;
this.forceDisconnect();
}
};
return new Stomp.Client(stompConfig);
};

const client = stompClient();
client.activate();

(node:14436) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:14436) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
(node:14436) UnhandledPromiseRejectionWarning: ReferenceError: WebSocket is not defined
at Client../src/client.ts.Client._createWebSocket (C:\Users\m.shaaban\Cequens\Projects\sms_http_bulk_interface\node_modules@stomp\stompjs\bundles\stomp.umd.js:419:13)
at Client. (C:\Users\m.shaaban\Cequens\Projects\sms_http_bulk_interface\node_modules@stomp\stompjs\bundles\stomp.umd.js:359:48)
at step (C:\Users\m.shaaban\Cequens\Projects\sms_http_bulk_interface\node_modules@stomp\stompjs\bundles\stomp.umd.js:165:23)
at Object.next (C:\Users\m.shaaban\Cequens\Projects\sms_http_bulk_interface\node_modules@stomp\stompjs\bundles\stomp.umd.js:146:53)
at fulfilled (C:\Users\m.shaaban\Cequens\Projects\sms_http_bulk_interface\node_modules@stomp\stompjs\bundles\stomp.umd.js:137:58)
at process._tickCallback (internal/process/next_tick.js:68:7)
at Function.Module.runMain (internal/modules/cjs/loader.js:745:11)
at startup (internal/bootstrap/node.js:283:19)
at bootstrapNodeJSCore (internal/bootstrap/node.js:743:3)
(node:14436) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2)

from stompjs.

kum-deepak avatar kum-deepak commented on September 23, 2024

Please check https://stomp-js.github.io/faqs/2019/05/20/faqs.html#p-can-this-library-be-used-with-nodejs-p

If that does not help, please share your Stomp Config.

from stompjs.

mohamed-rekiba avatar mohamed-rekiba commented on September 23, 2024

i'm already solve this problem by using this workaround
Object.assign(global, {
WebSocket: websocket.w3cwebsocket,
// Not needed in node 11
TextEncoder: TextEncodingPolyfill.TextEncoder,
TextDecoder: TextEncodingPolyfill.TextDecoder
});

but when i'm seeing your commit 'Fixed and released in 5.4.2.'
i think that i can use it without this workaround

from stompjs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.