aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2016-04-06 17:29:43 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2016-04-06 17:29:43 +0200
commitc1d4f601753585cc063c9a0a947823c6c4e74537 (patch)
treeac94b97ebaf913a53dd12fb90f23aafe28143401 /test
parenta93623ba9a6914f381449205873a1d879deaee88 (diff)
improve the websock test
Change-Id: Ibaa232dfd42b0dc060a09b042ab2879b13b6b8ab Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'test')
-rw-r--r--test/websock.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/websock.html b/test/websock.html
index dd38e74a..2ebb90bf 100644
--- a/test/websock.html
+++ b/test/websock.html
@@ -23,7 +23,9 @@
document.getElementById("output").innerHTML = "ERROR: "+JSON.stringify(obj);
}
function send(message) {
- ws.call("hello", "ping", {data:message}, replyok, replyerr);
+ var api = document.getElementById("api").value;
+ var verb = document.getElementById("verb").value;
+ ws.call(api, verb, {data:message}, replyok, replyerr);
}
</script>
@@ -31,6 +33,8 @@
<h1>WebSocket Echo</h1>
<div id="connected">Not Connected</div>
<div id="main" style="visibility:hidden">
+ API: <input type="text" id="api" value="hello" size="80"/><br/>
+ VERB: <input type="text" id="verb" value="ping" size="80"/><br/>
Enter Message: <input type="text" name="message" value="" size="80" onchange="send(this.value)"/><br/>
Server says... <div id="output"></div>
</div>