Sha256: 1538e8c94781e98c7256eec557a5412d53e594ba3cfee2249b5ec79b628c191e

Contents?: true

Size: 1.18 KB

Versions: 12

Compression:

Stored size: 1.18 KB

Contents

<!doctype html>
<html>
  <head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8">
    <title>WebSocket test</title>
  </head>
  <body>
    
    <h1>WebSocket test</h1>
    <ul></ul>
    
    <script type="text/javascript">
      var logger = document.getElementsByTagName('ul')[0],
          Socket = window.MozWebSocket || window.WebSocket,
          protos = ['foo', 'bar', 'xmpp'],
          socket = new Socket('ws://' + location.hostname + ':' + location.port + '/', protos),
          index  = 0;
      
      var log = function(text) {
        logger.innerHTML += '<li>' + text + '</li>';
      };
      
      socket.addEventListener('open', function() {
        log('OPEN: ' + socket.protocol);
        socket.send('Hello, world');
      });
      
      socket.onerror = function(event) {
        log('ERROR: ' + event.message);
      };
      
      socket.onmessage = function(event) {
        log('MESSAGE: ' + event.data);
        setTimeout(function() { socket.send(++index + ' ' + event.data) }, 2000);
      };
      
      socket.onclose = function(event) {
        log('CLOSE: ' + event.code + ', ' + event.reason);
      };
    </script>
    
  </body>
</html>

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
faye-websocket-0.4.6-java examples/ws.html
faye-websocket-0.4.6 examples/ws.html
faye-websocket-0.4.5-java examples/ws.html
faye-websocket-0.4.5 examples/ws.html
_bushido-faye-websocket-0.4.4 examples/ws.html
faye-websocket-0.4.4-java examples/ws.html
faye-websocket-0.4.4 examples/ws.html
faye-websocket-0.4.3 examples/ws.html
faye-websocket-0.4.2 examples/ws.html
faye-websocket-0.4.1 examples/ws.html
faye-websocket-0.4.0 examples/ws.html
faye-websocket-0.3.0 examples/ws.html