-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex3.html
More file actions
99 lines (78 loc) · 2.32 KB
/
index3.html
File metadata and controls
99 lines (78 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<meta charset="utf-8" />
<title>WebSocket Test</title>
<script language="javascript" type="text/javascript">
var sessionUri = "ws://133.130.89.34:3000/session";
var sendTime = 0
var output;
function sendLoginMessge() {
doSend("{ \"Content@\" : \"{\\\"Id@\\\":\\\"id2\\\",\\\"Passwd@\\\":\\\"123\\\"}\", \"Type@\" : 0 }")
}
function sendAddFriendMessage(friendId) {
doSend("{ \"Content@\" : \"{\\\"FriendId@\\\":\\\"" + friendId + "\\\"}\", \"Type@\" : 4 }")
}
function sendGetFriendsMessage() {
doSend("{ \"Content@\" : \"\", \"Type@\" : 6 }")
}
function sendGetUnreadMessages() {
doSend("{ \"Content@\" : \"\", \"Type@\" : 2 }")
}
function sendMsg(usr, content) {
doSend("{ \"Content@\" : \"{\\\"ReceiverId@\\\":\\\"" + usr + "\\\",\\\"Content@\\\":\\\"" + content + "\\\"}\", \"Type@\" : 1 }")
}
function init()
{
output = document.getElementById("output");
testWebSocket();
}
function testWebSocket()
{
websocket = new WebSocket(sessionUri);
websocket.onopen = function(evt) { onOpen(evt) };
websocket.onclose = function(evt) { onClose(evt) };
websocket.onmessage = function(evt) { onMessage(evt) };
websocket.onerror = function(evt) { onError(evt) };
}
function onOpen(evt)
{
writeToScreen("CONNECTED");
sendLoginMessge();
}
function onClose(evt)
{
writeToScreen('<span style="color: green;">CLOSE: ' + evt.data + '</span>');
}
function onMessage(evt)
{
writeToScreen('<span style="color: blue;">RESPONSE: ' + evt.data + '</span>');
if (sendTime == 0) {
sendAddFriendMessage("id1")
sendTime = sendTime + 1
} else if (sendTime == 1) {
sendGetFriendsMessage()
sendTime = sendTime + 1
} else if (sendTime == 2) {
sendMsg("id1", "Hello")
sendTime = sendTime + 1
}
}
function onError(evt)
{
writeToScreen('<span style="color: red;">ERROR:</span> ' + evt.data);
}
function doSend(message)
{
writeToScreen("SENT: " + message);
websocket.send(message);
}
function writeToScreen(message)
{
var pre = document.createElement("p");
pre.style.wordWrap = "break-word";
pre.innerHTML = message;
output.appendChild(pre);
}
window.addEventListener("load", init, false);
</script>
<h2>WebSocket Test</h2>
<div id="output"></div>