Our application is written in Java 8, uses glassfish 4.1.1 application-server. Part of the functionality is implemented using WebSockets technology.
On the server side, Websockets are implemented via @ServerEndpoint (If necessary, I can provide the code). The port is not explicitly specified. Googling, it turned out that in this case they use the default port 80 (correct if I am mistaken).
In general, the web application works well, users do not have problems with connecting to it and to web socket.
However, on one of the machines, the web application does not load with the error:
failed to execute 'send' on websocket: Still in CONNECTING state
On that user's machine, Google Chrome is used, so there is no reason to think that web sockets there may not be supported.
What could be the problem? Why does it manifest itself in such a strange form only on one computer (maybe someone else, only I do not know about it)?
Have any ideas? We will be very grateful!