Web Socket multiuser data

Hello,
How can we send multiple user data on web socket? Read more..
Suppose I have 10 user and I have web socket connected to some port say ws/example.
Now all the user can send their data on websocket . So is it affect the data of previous or next users.

Not sure if the websocket nodes have this but for Dashboard and uibuilder, incoming websocket messages have a msg._socketId on them. This gives a rough indication of the client that sent the message. However, each browser tab creates a new client connection and that connection is reset if a link is temporarily lost or if the user reloads the page.

The best approach is to add something to your messages yourself.

1 Like

Thanks for your input.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.