Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WebSocket live server [closed]

Tags:

Does anyone happen to know of any live WebSocket servers which are accessible over the internet and listen on the standard ports (i.e. 80, and 443). Anything will do - an echo server, for instance.

Thanks

like image 291
Barg Avatar asked Nov 03 '10 23:11

Barg


People also ask

Why is WebSocket connection closed?

The WebSocket is closed before the connection is established error message indicates that some client code, or other mechanism, has closed the websocket connection before the connection was fully established.

How long does it take for WebSocket to close?

Typically, HTTP/1.1 infrastructure closes idle connections after 30 to 120 seconds. As a consequence, proxies may terminate WebSocket connections prematurely when no message was exchanged in 30 seconds.

Is WebSocket real time?

WebSockets are used for real-time communication between the browser and a server. These communications are bi-directional. Therefore it fits low latency applications such as chat, real-time multiplayer gaming, in-app notifications.


1 Answers

Update: Kaazing/Tenefit appears to no longer be hosting the WebSocket echo server at websocket.org. An alternative echo server is available at ws.ifelse.io instead (running https://github.com/jmalloc/echo-server and hosted by Mark Thomas)

Your best bet is going to be Kaazing's websockets echo server: http://websockets.org/echo.html. It's easy to remember, they keep it up to date and running.

  • ws://echo.websocket.org (port 80)
  • wss://echo.websocket.org (port 443)

EDIT: If you want to use wss:// (443) visit the site with https:// or else use http:// for ws:// (80).

EDIT: WebSocket.org is dead.

like image 87
kanaka Avatar answered Sep 29 '22 20:09

kanaka