changeset 1398:24f6540c1eaf

mod_websocket: Update websocket.html
author Florian Zeitz <florob@babelmonkeys.de>
date Mon, 28 Apr 2014 23:24:01 +0200
parents 4e36b68d68da
children 7fb6b607afd6
files mod_websocket/websocket.html
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mod_websocket/websocket.html	Mon Apr 28 23:23:45 2014 +0200
+++ b/mod_websocket/websocket.html	Mon Apr 28 23:24:01 2014 +0200
@@ -6,7 +6,7 @@
 			if ("WebSocket" in window) {
 				var ws = new WebSocket("ws://localhost:5280/xmpp-websocket/", "xmpp");
 				ws.onopen = function() {
-					ws.send("<stream:stream to='localhost' xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' version='1.0'>");
+					ws.send("<open to='localhost' xmlns='urn:ietf:params:xml:ns:xmpp-framing' version='1.0'/>");
 				};
 				ws.onmessage = function (evt) {
 					var message = evt.data;