Answer the question
In order to leave comments, you need to log in
How to open websocket connection on openserver?
Do not open connection on local machine.
If you write ws=new WebSocket("ws://echo.websocket.org"); that works.
ps openserver ran as administrator
Help me solve the problem, I really want to use websockets on the local machine.
ws = new WebSocket("ws://localhost:8080");
// и навешивает на новый объект три колл-бека:
// первый вызовется, когда соединение будет установлено:
ws.onopen = function() {
alert("Connection opened...");
};
// второй - когда соединено закроется
ws.onclose = function() { alert("close") };
// и, наконец, третий - каждый раз, когда браузер получает какие-то данные через веб-сокет
ws.onmessage = function () { alert("сообщение")};
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question