[Modify] Polish it

This commit is contained in:
sta 2016-08-08 17:50:02 +09:00
parent e707edabd1
commit c2032eab71

View File

@ -14,8 +14,9 @@ namespace Example3
{ {
// 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 a new instance with // If you would like to provide the secure connection, you should
// the 'secure' parameter set to true, or an https scheme HTTP URL. // create a new instance with the 'secure' parameter set to true,
// or an 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);
@ -55,17 +56,16 @@ namespace Example3
// Not to remove the inactive WebSocket sessions periodically. // Not to remove the inactive WebSocket sessions periodically.
//httpsv.KeepClean = false; //httpsv.KeepClean = false;
// To resolve to wait for socket in TIME_WAIT state.
//httpsv.ReuseAddress = true;
#endif #endif
/* To provide the secure connection. // To provide the secure connection.
/*
var cert = ConfigurationManager.AppSettings["ServerCertFile"]; var cert = ConfigurationManager.AppSettings["ServerCertFile"];
var passwd = ConfigurationManager.AppSettings["CertFilePassword"]; var passwd = ConfigurationManager.AppSettings["CertFilePassword"];
httpsv.SslConfiguration.ServerCertificate = new X509Certificate2 (cert, passwd); httpsv.SslConfiguration.ServerCertificate = new X509Certificate2 (cert, passwd);
*/ */
/* To provide the HTTP Authentication (Basic/Digest). // To provide the HTTP Authentication (Basic/Digest).
/*
httpsv.AuthenticationSchemes = AuthenticationSchemes.Basic; httpsv.AuthenticationSchemes = AuthenticationSchemes.Basic;
httpsv.Realm = "WebSocket Test"; httpsv.Realm = "WebSocket Test";
httpsv.UserCredentialsFinder = id => { httpsv.UserCredentialsFinder = id => {
@ -78,6 +78,9 @@ namespace Example3
}; };
*/ */
// To resolve to wait for socket in TIME_WAIT state.
//httpsv.ReuseAddress = true;
// Set the document root path. // Set the document root path.
httpsv.RootPath = ConfigurationManager.AppSettings["RootPath"]; httpsv.RootPath = ConfigurationManager.AppSettings["RootPath"];
@ -112,17 +115,18 @@ namespace Example3
httpsv.AddWebSocketService<Echo> ("/Echo"); httpsv.AddWebSocketService<Echo> ("/Echo");
httpsv.AddWebSocketService<Chat> ("/Chat"); httpsv.AddWebSocketService<Chat> ("/Chat");
/* Add the WebSocket service with initializing. // Add the WebSocket service with initializing.
/*
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. // 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.
EmitOnPing = true,
// To ignore the Sec-WebSocket-Extensions header. // To ignore the Sec-WebSocket-Extensions header.
IgnoreExtensions = true, IgnoreExtensions = true,
// To emit a WebSocket.OnMessage event when receives a ping.
EmitOnPing = true,
// To validate the Origin header. // To validate the Origin header.
OriginValidator = val => { OriginValidator = val => {
// Check the value of the Origin header, and return true if valid. // Check the value of the Origin header, and return true if valid.