Skip to content

Commit

Permalink
HornetQ-819 STOMP Web Sockets
Browse files Browse the repository at this point in the history
* upgrade to Netty to io.netty 3.4.5.Final
* fix WebSocket handshake by using Netty websocketx Handshaker
* fix performance by using binary Web Socket frame and discarding the
  whole WebSocketStompFrameEncoder ugly hack
* update stomp-websocket JavaScript to latest version
  (d1f600611e) from
  https://raw.github.com/jmesnil/stomp-websocket/master/dist/stomp.js
  • Loading branch information
jmesnil committed May 24, 2012
1 parent e6ee414 commit 884de24
Show file tree
Hide file tree
Showing 11 changed files with 297 additions and 328 deletions.
3 changes: 1 addition & 2 deletions examples/stomp-websockets/chat/chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ $(document).ready(function(){
};
// the client is notified when it is connected to the server.
var onconnect = function(frame) {
debug("connected to Stomp");
$('#connect').fadeOut({ duration: 'fast' });
$('#disconnect').fadeIn();
$('#send_form_input').removeAttr('disabled');
Expand Down Expand Up @@ -48,4 +47,4 @@ $(document).ready(function(){
return false;
});

});
});
Loading

0 comments on commit 884de24

Please sign in to comment.