view mod_websocket/websocket.html @ 1498:e82592ed744b

mod_mam_archive: Applying @vstakhov 's patch (https://gist.github.com/vstakhov/306ea813a38021dcf3d4). Fixing SQLite-related bugs, to-from bugs, rst compatibility, etc. Thanks Vsevolod!
author syn@syn.im
date Sun, 31 Aug 2014 20:13:54 +0200
parents 24f6540c1eaf
children
line wrap: on
line source

<!DOCTYPE html>
<html>
	<head>
		<title>XMPP Websocket</title>
		<script type="text/javascript">
			if ("WebSocket" in window) {
				var ws = new WebSocket("ws://localhost:5280/xmpp-websocket/", "xmpp");
				ws.onopen = function() {
					ws.send("<open to='localhost' xmlns='urn:ietf:params:xml:ns:xmpp-framing' version='1.0'/>");
				};
				ws.onmessage = function (evt) {
					var message = evt.data;
					alert ("Received frame: " + message);
				};
				ws.onclose = function() {
					alert ("Disconnected");
				};
			} else {
				alert ("Your browser doesn't implement WebSocket !");
			}
		</script>
	</head>
	<body>
	</body>
</html>