50 lines
1.6 KiB
HTML
50 lines
1.6 KiB
HTML
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|||
|
<html>
|
|||
|
<head>
|
|||
|
<title>websocket client</title>
|
|||
|
<script type="text/javascript">
|
|||
|
var start = function () {
|
|||
|
var inc = document.getElementById('incomming');
|
|||
|
var wsImpl = window.WebSocket || window.MozWebSocket;
|
|||
|
var form = document.getElementById('sendForm');
|
|||
|
var input = document.getElementById('sendText');
|
|||
|
|
|||
|
inc.innerHTML += "connecting to server ..<br/>";
|
|||
|
|
|||
|
// create a new websocket and connect
|
|||
|
window.ws = new wsImpl('ws://localhost:8181/');
|
|||
|
//window.ws = new wsImpl('ws://120.78.137.110:8181/');
|
|||
|
// when data is comming from the server, this metod is called
|
|||
|
ws.onmessage = function (evt) {
|
|||
|
inc.innerHTML += evt.data + '<br/>';
|
|||
|
};
|
|||
|
|
|||
|
// when the connection is established, this method is called
|
|||
|
ws.onopen = function () {
|
|||
|
inc.innerHTML += '.. connection open<br/>';
|
|||
|
};
|
|||
|
|
|||
|
// when the connection is closed, this method is called
|
|||
|
ws.onclose = function () {
|
|||
|
inc.innerHTML += '.. connection closed<br/>';
|
|||
|
}
|
|||
|
|
|||
|
form.addEventListener('submit', function(e){
|
|||
|
e.preventDefault();
|
|||
|
var val = input.value;
|
|||
|
ws.send(val);
|
|||
|
input.value = "";
|
|||
|
});
|
|||
|
|
|||
|
}
|
|||
|
window.onload = start;
|
|||
|
</script>
|
|||
|
</head>
|
|||
|
<body>
|
|||
|
<form id="sendForm">
|
|||
|
<input id="sendText" placeholder="Text to send" />
|
|||
|
</form>
|
|||
|
<pre id="incomming"></pre>
|
|||
|
</body>
|
|||
|
</html>
|