<!DOCTYPE HTML> <html> <head> <title>rhimportd - Testclient</title> <meta charset="utf-8"> <style type="text/css"> body { background-color: #555; } div.data { background-color: white; border: 1px solid; padding: 1em; font-family: monospace; margin-top: 1em; } </style> <script src="jquery.min.js"></script> <script type="text/javascript"> function Session(req) { this.req = req $('#rawmsg').text(""); this.sock = new WebSocket("ws://localhost:4080/public/socket"); this.sock.onmessage = function (event) { $('#rawmsg').append(event.data); msg = $.parseJSON(event.data) switch (msg.TYPE) { case "ACK": $('#sessionid').val(msg.ID); $('#buttonrun').attr('disabled','disabled') $('#buttonreconnect').attr('disabled','disabled') $('#buttoncancel').removeAttr('disabled') break; case "DONE": init(); break; } } this.sock_onopen = function() { this.sock.send(JSON.stringify(this.req)); } this.sock.onopen = this.sock_onopen.bind(this); this.cancel = function() { this.sock.send(JSON.stringify({COMMAND: "cancel"})); } } var s; function run() { req = { COMMAND: "new", TIMEOUT: 200, REFERENCE_ID: "my-very-personal-import", LOGIN_NAME: "heslinki", PASSWORD: "12423", SHOW_ID: 10002, CLEAR_SHOW_CARTS: true, SOURCE_URI: "fake://10000" }; s = new Session(req); } function reconnect() { req = { COMMAND: "reconnect", LOGIN_NAME: "heslinki", ID: $('#sessionid').val() }; s = new Session(req); } function cancel() { s.cancel(); } function init() { $('#sessionid').val(""); $('#buttonrun').removeAttr('disabled') $('#buttonreconnect').removeAttr('disabled') $('#buttoncancel').attr('disabled','disabled') } </script> </head> <body onload="init()"> <h1>Radio Helsinki Rivendell Importer:</h1> <button id="buttonrun" onclick="run()">start</button> <button id="buttoncancel" onclick="cancel()">cancel</button> <input id="sessionid" type="text" size="45" label="ID"> <button id="buttonreconnect" onclick="reconnect()">reconnect</button> <div id="rawmsg" class="data"></div> </body> </html>