I am trying to connect to a C# TCP server using HTML5 from the example in http://www.tutorialspoint.com/html5/html5_websocket.htm
<!DOCTYPE HTML> <html> <head> <script type="text/javascript"> function WebSocketTest() { if ("WebSocket" in window) { alert("WebSocket is supported by your Browser!"); // Let us open a web socket var ws = new WebSocket("ws://localhost:9998/echo"); ws.onopen = function() { // Web Socket is connected, send data using send() ws.send("Message to send"); alert("Message is sent..."); }; ws.onmessage = function (evt) { var received_msg = evt.data; alert("Message is received..."); }; ws.onclose = function() { // websocket is closed. alert("Connection is closed..."); }; } else { // The browser doesn't support WebSocket alert("WebSocket NOT supported by your Browser!"); } } </script> </head> <body> <div id="sse"> <a href="javascript:WebSocketTest()">Run WebSocket</a> </div> </body> </html> The TCP server runs on the local machine on port 4530. So I changed
var ws = new WebSocket("ws://localhost:9998/echo"); to
var ws = new WebSocket("ws://localhost:4530"); When I run the page, I get the message WebSocket is supported by your Browser! and it hangs there. Any help?
WebSocketprotocol? It may depend on the browser that you use