<html>
<head>
<script>
var webSocket = new WebSocket('ws://localhost/echo');
webSocket.onopen = function(event) {
alert('onopen');
webSocket.send("Hello Web Socket!");
};
webSocket.onmessage = function(event) {
alert('onmessage, ' + event.data);
};
webSocket.onclose = function(event) {
alert('onclose');
};
</script>
</head>
<body>
</body>
<!-- может вы чтото понимаете в этом коде -->
</html>