[Modify] Polish it
This commit is contained in:
parent
b1b728eefd
commit
83aa8c9460
@ -24,9 +24,7 @@ namespace Example3
|
|||||||
private string getName ()
|
private string getName ()
|
||||||
{
|
{
|
||||||
var name = Context.QueryString["name"];
|
var name = Context.QueryString["name"];
|
||||||
return !name.IsNullOrEmpty ()
|
return !name.IsNullOrEmpty () ? name : _prefix + getNumber ();
|
||||||
? name
|
|
||||||
: (_prefix + getNumber ());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static int getNumber ()
|
private static int getNumber ()
|
||||||
|
@ -9,8 +9,7 @@ namespace Example3
|
|||||||
protected override void OnMessage (MessageEventArgs e)
|
protected override void OnMessage (MessageEventArgs e)
|
||||||
{
|
{
|
||||||
var name = Context.QueryString["name"];
|
var name = Context.QueryString["name"];
|
||||||
var msg = !name.IsNullOrEmpty () ? String.Format ("'{0}' to {1}", e.Data, name) : e.Data;
|
Send (!name.IsNullOrEmpty () ? String.Format ("\"{0}\" to {1}", e.Data, name) : e.Data);
|
||||||
Send (msg);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -12,11 +12,11 @@ namespace Example3
|
|||||||
{
|
{
|
||||||
public static void Main (string[] args)
|
public static void Main (string[] args)
|
||||||
{
|
{
|
||||||
/* Create a new instance of the HttpServer class.
|
// Create a new instance of the HttpServer class.
|
||||||
*
|
//
|
||||||
* If you would like to provide the secure connection, you should create the instance with
|
// If you would like to provide the secure connection, you should create the instance with
|
||||||
* the 'secure' parameter set to true, or the https scheme HTTP URL.
|
// the 'secure' parameter set to true, or the https scheme HTTP URL.
|
||||||
*/
|
|
||||||
var httpsv = new HttpServer (4649);
|
var httpsv = new HttpServer (4649);
|
||||||
//var httpsv = new HttpServer (5963, true);
|
//var httpsv = new HttpServer (5963, true);
|
||||||
//var httpsv = new HttpServer (System.Net.IPAddress.Parse ("127.0.0.1"), 4649);
|
//var httpsv = new HttpServer (System.Net.IPAddress.Parse ("127.0.0.1"), 4649);
|
||||||
@ -49,10 +49,10 @@ namespace Example3
|
|||||||
};
|
};
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// To set the document root path.
|
// Set the document root path.
|
||||||
httpsv.RootPath = ConfigurationManager.AppSettings["RootPath"];
|
httpsv.RootPath = ConfigurationManager.AppSettings["RootPath"];
|
||||||
|
|
||||||
// To set the HTTP GET method event.
|
// Set the HTTP GET request event.
|
||||||
httpsv.OnGet += (sender, e) => {
|
httpsv.OnGet += (sender, e) => {
|
||||||
var req = e.Request;
|
var req = e.Request;
|
||||||
var res = e.Response;
|
var res = e.Response;
|
||||||
@ -72,6 +72,11 @@ namespace Example3
|
|||||||
res.ContentEncoding = Encoding.UTF8;
|
res.ContentEncoding = Encoding.UTF8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (path.EndsWith (".js")) {
|
||||||
|
res.ContentType = "application/javascript";
|
||||||
|
res.ContentEncoding = Encoding.UTF8;
|
||||||
|
}
|
||||||
|
|
||||||
res.WriteContent (content);
|
res.WriteContent (content);
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -89,8 +94,9 @@ namespace Example3
|
|||||||
httpsv.AddWebSocketService<Chat> (
|
httpsv.AddWebSocketService<Chat> (
|
||||||
"/Chat",
|
"/Chat",
|
||||||
() => new Chat ("Anon#") {
|
() => new Chat ("Anon#") {
|
||||||
|
// To send the Sec-WebSocket-Protocol header that has a subprotocol name.
|
||||||
Protocol = "chat",
|
Protocol = "chat",
|
||||||
// To emit a WebSocket.OnMessage event when receives a Ping.
|
// To emit a WebSocket.OnMessage event when receives a ping.
|
||||||
EmitOnPing = true,
|
EmitOnPing = true,
|
||||||
// To ignore the Sec-WebSocket-Extensions header.
|
// To ignore the Sec-WebSocket-Extensions header.
|
||||||
IgnoreExtensions = true,
|
IgnoreExtensions = true,
|
||||||
|
@ -18,39 +18,39 @@ function init () {
|
|||||||
function doWebSocket () {
|
function doWebSocket () {
|
||||||
websocket = new WebSocket (url);
|
websocket = new WebSocket (url);
|
||||||
|
|
||||||
websocket.onopen = function (evt) {
|
websocket.onopen = function (e) {
|
||||||
onOpen (evt)
|
onOpen (e);
|
||||||
};
|
};
|
||||||
|
|
||||||
websocket.onclose = function (evt) {
|
websocket.onmessage = function (e) {
|
||||||
onClose (evt)
|
onMessage (e);
|
||||||
};
|
};
|
||||||
|
|
||||||
websocket.onmessage = function (evt) {
|
websocket.onerror = function (e) {
|
||||||
onMessage (evt)
|
onError (e);
|
||||||
};
|
};
|
||||||
|
|
||||||
websocket.onerror = function (evt) {
|
websocket.onclose = function (e) {
|
||||||
onError (evt)
|
onClose (e);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
function onOpen (evt) {
|
function onOpen (event) {
|
||||||
writeToScreen ("CONNECTED");
|
writeToScreen ("CONNECTED");
|
||||||
send ("WebSocket rocks");
|
send ("WebSocket rocks");
|
||||||
}
|
}
|
||||||
|
|
||||||
function onClose (evt) {
|
function onMessage (event) {
|
||||||
writeToScreen ("DISCONNECTED");
|
writeToScreen ('<span style="color: blue;">RESPONSE: ' + event.data + '</span>');
|
||||||
}
|
|
||||||
|
|
||||||
function onMessage (evt) {
|
|
||||||
writeToScreen ('<span style="color: blue;">RESPONSE: ' + evt.data + '</span>');
|
|
||||||
websocket.close ();
|
websocket.close ();
|
||||||
}
|
}
|
||||||
|
|
||||||
function onError (evt) {
|
function onError (event) {
|
||||||
writeToScreen('<span style="color: red;">ERROR: ' + evt.data + '</span>');
|
writeToScreen ('<span style="color: red;">ERROR: ' + event.data + '</span>');
|
||||||
|
}
|
||||||
|
|
||||||
|
function onClose (event) {
|
||||||
|
writeToScreen ("DISCONNECTED");
|
||||||
}
|
}
|
||||||
|
|
||||||
function send (message) {
|
function send (message) {
|
||||||
|
Loading…
Reference in New Issue
Block a user