Mercurial > prosody-modules
annotate mod_websocket/websocket.html @ 1146:9fa89dc7a86f
mod_mam_muc: Search the rooms archive correctly (copypaste error from mod_mam)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 10 Aug 2013 21:37:35 +0200 |
parents | 14e10bce7463 |
children | 24f6540c1eaf |
rev | line source |
---|---|
129 | 1 <!DOCTYPE html> |
2 <html> | |
3 <head> | |
4 <title>XMPP Websocket</title> | |
5 <script type="text/javascript"> | |
6 if ("WebSocket" in window) { | |
848
14e10bce7463
mod_websocket: Update example HTML
Florian Zeitz <florob@babelmonkeys.de>
parents:
129
diff
changeset
|
7 var ws = new WebSocket("ws://localhost:5280/xmpp-websocket/", "xmpp"); |
129 | 8 ws.onopen = function() { |
9 ws.send("<stream:stream to='localhost' xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' version='1.0'>"); | |
10 }; | |
11 ws.onmessage = function (evt) { | |
12 var message = evt.data; | |
13 alert ("Received frame: " + message); | |
14 }; | |
15 ws.onclose = function() { | |
16 alert ("Disconnected"); | |
17 }; | |
18 } else { | |
19 alert ("Your browser doesn't implement WebSocket !"); | |
20 } | |
21 </script> | |
22 </head> | |
23 <body> | |
24 </body> | |
25 </html> |