[Modify] Rename it
This commit is contained in:
parent
a854efa0c4
commit
ebe1fa15d9
@ -2,7 +2,7 @@
|
|||||||
<configuration>
|
<configuration>
|
||||||
<appSettings>
|
<appSettings>
|
||||||
<add key="CertFilePassword" value="password"/>
|
<add key="CertFilePassword" value="password"/>
|
||||||
<add key="RootPath" value="../../Public"/>
|
<add key="DocumentRootPath" value="../../Public"/>
|
||||||
<add key="ServerCertFile" value="/path/to/cert.pfx"/>
|
<add key="ServerCertFile" value="/path/to/cert.pfx"/>
|
||||||
</appSettings>
|
</appSettings>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
@ -82,7 +82,7 @@ namespace Example3
|
|||||||
//httpsv.ReuseAddress = true;
|
//httpsv.ReuseAddress = true;
|
||||||
|
|
||||||
// Set the document root path.
|
// Set the document root path.
|
||||||
httpsv.RootPath = ConfigurationManager.AppSettings["RootPath"];
|
httpsv.DocumentRootPath = ConfigurationManager.AppSettings["DocumentRootPath"];
|
||||||
|
|
||||||
// Set the HTTP GET request event.
|
// Set the HTTP GET request event.
|
||||||
httpsv.OnGet += (sender, e) => {
|
httpsv.OnGet += (sender, e) => {
|
||||||
|
@ -62,12 +62,12 @@ namespace WebSocketSharp.Server
|
|||||||
#region Private Fields
|
#region Private Fields
|
||||||
|
|
||||||
private System.Net.IPAddress _address;
|
private System.Net.IPAddress _address;
|
||||||
|
private string _docRootPath;
|
||||||
private string _hostname;
|
private string _hostname;
|
||||||
private HttpListener _listener;
|
private HttpListener _listener;
|
||||||
private Logger _log;
|
private Logger _log;
|
||||||
private int _port;
|
private int _port;
|
||||||
private Thread _receiveThread;
|
private Thread _receiveThread;
|
||||||
private string _rootPath;
|
|
||||||
private bool _secure;
|
private bool _secure;
|
||||||
private WebSocketServiceManager _services;
|
private WebSocketServiceManager _services;
|
||||||
private volatile ServerState _state;
|
private volatile ServerState _state;
|
||||||
@ -328,6 +328,80 @@ namespace WebSocketSharp.Server
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the path to the document folder of the server.
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// <para>
|
||||||
|
/// '/' or '\' is trimmed from the end of the value if any.
|
||||||
|
/// </para>
|
||||||
|
/// <para>
|
||||||
|
/// The set operation does nothing if the server has already
|
||||||
|
/// started or it is shutting down.
|
||||||
|
/// </para>
|
||||||
|
/// </remarks>
|
||||||
|
/// <value>
|
||||||
|
/// <para>
|
||||||
|
/// A <see cref="string"/> that represents a path to the folder
|
||||||
|
/// from which to find the requested file.
|
||||||
|
/// </para>
|
||||||
|
/// <para>
|
||||||
|
/// The default value is "./Public".
|
||||||
|
/// </para>
|
||||||
|
/// </value>
|
||||||
|
/// <exception cref="ArgumentNullException">
|
||||||
|
/// The value specified for a set operation is <see langword="null"/>.
|
||||||
|
/// </exception>
|
||||||
|
/// <exception cref="ArgumentException">
|
||||||
|
/// <para>
|
||||||
|
/// The value specified for a set operation is an empty string.
|
||||||
|
/// </para>
|
||||||
|
/// <para>
|
||||||
|
/// -or-
|
||||||
|
/// </para>
|
||||||
|
/// <para>
|
||||||
|
/// The value specified for a set operation is an absolute root.
|
||||||
|
/// </para>
|
||||||
|
/// </exception>
|
||||||
|
public string DocumentRootPath {
|
||||||
|
get {
|
||||||
|
return _docRootPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
set {
|
||||||
|
if (value == null)
|
||||||
|
throw new ArgumentNullException ("value");
|
||||||
|
|
||||||
|
if (value.Length == 0)
|
||||||
|
throw new ArgumentException ("An empty string.", "value");
|
||||||
|
|
||||||
|
value = value.TrimSlashOrBackslashFromEnd ();
|
||||||
|
if (value == "/")
|
||||||
|
throw new ArgumentException ("An absolute root.", "value");
|
||||||
|
|
||||||
|
if (value == "\\")
|
||||||
|
throw new ArgumentException ("An absolute root.", "value");
|
||||||
|
|
||||||
|
if (value.Length == 2 && value[1] == ':')
|
||||||
|
throw new ArgumentException ("An absolute root.", "value");
|
||||||
|
|
||||||
|
string msg;
|
||||||
|
if (!canSet (out msg)) {
|
||||||
|
_log.Warn (msg);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
lock (_sync) {
|
||||||
|
if (!canSet (out msg)) {
|
||||||
|
_log.Warn (msg);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
_docRootPath = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets a value indicating whether the server has started.
|
/// Gets a value indicating whether the server has started.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -512,80 +586,6 @@ namespace WebSocketSharp.Server
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets or sets the path to the document folder of the server.
|
|
||||||
/// </summary>
|
|
||||||
/// <remarks>
|
|
||||||
/// <para>
|
|
||||||
/// '/' or '\' is trimmed from the end of the value if any.
|
|
||||||
/// </para>
|
|
||||||
/// <para>
|
|
||||||
/// The set operation does nothing if the server has already
|
|
||||||
/// started or it is shutting down.
|
|
||||||
/// </para>
|
|
||||||
/// </remarks>
|
|
||||||
/// <value>
|
|
||||||
/// <para>
|
|
||||||
/// A <see cref="string"/> that represents a path to the folder
|
|
||||||
/// from which to find the requested file.
|
|
||||||
/// </para>
|
|
||||||
/// <para>
|
|
||||||
/// The default value is "./Public".
|
|
||||||
/// </para>
|
|
||||||
/// </value>
|
|
||||||
/// <exception cref="ArgumentNullException">
|
|
||||||
/// The value specified for a set operation is <see langword="null"/>.
|
|
||||||
/// </exception>
|
|
||||||
/// <exception cref="ArgumentException">
|
|
||||||
/// <para>
|
|
||||||
/// The value specified for a set operation is an empty string.
|
|
||||||
/// </para>
|
|
||||||
/// <para>
|
|
||||||
/// -or-
|
|
||||||
/// </para>
|
|
||||||
/// <para>
|
|
||||||
/// The value specified for a set operation is an absolute root.
|
|
||||||
/// </para>
|
|
||||||
/// </exception>
|
|
||||||
public string RootPath {
|
|
||||||
get {
|
|
||||||
return _rootPath;
|
|
||||||
}
|
|
||||||
|
|
||||||
set {
|
|
||||||
if (value == null)
|
|
||||||
throw new ArgumentNullException ("value");
|
|
||||||
|
|
||||||
if (value.Length == 0)
|
|
||||||
throw new ArgumentException ("An empty string.", "value");
|
|
||||||
|
|
||||||
value = value.TrimSlashOrBackslashFromEnd ();
|
|
||||||
if (value == "/")
|
|
||||||
throw new ArgumentException ("An absolute root.", "value");
|
|
||||||
|
|
||||||
if (value == "\\")
|
|
||||||
throw new ArgumentException ("An absolute root.", "value");
|
|
||||||
|
|
||||||
if (value.Length == 2 && value[1] == ':')
|
|
||||||
throw new ArgumentException ("An absolute root.", "value");
|
|
||||||
|
|
||||||
string msg;
|
|
||||||
if (!canSet (out msg)) {
|
|
||||||
_log.Warn (msg);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
lock (_sync) {
|
|
||||||
if (!canSet (out msg)) {
|
|
||||||
_log.Warn (msg);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
_rootPath = value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the configuration for secure connections.
|
/// Gets the configuration for secure connections.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -842,7 +842,7 @@ namespace WebSocketSharp.Server
|
|||||||
private string createFilePath (string childPath)
|
private string createFilePath (string childPath)
|
||||||
{
|
{
|
||||||
childPath = childPath.TrimStart ('/', '\\');
|
childPath = childPath.TrimStart ('/', '\\');
|
||||||
return new StringBuilder (_rootPath, 32)
|
return new StringBuilder (_docRootPath, 32)
|
||||||
.AppendFormat ("/{0}", childPath)
|
.AppendFormat ("/{0}", childPath)
|
||||||
.ToString ()
|
.ToString ()
|
||||||
.Replace ('\\', '/');
|
.Replace ('\\', '/');
|
||||||
@ -862,6 +862,8 @@ namespace WebSocketSharp.Server
|
|||||||
_port = port;
|
_port = port;
|
||||||
_secure = secure;
|
_secure = secure;
|
||||||
|
|
||||||
|
_docRootPath = "./Public";
|
||||||
|
|
||||||
var lsnr = new HttpListener ();
|
var lsnr = new HttpListener ();
|
||||||
var pref = String.Format (
|
var pref = String.Format (
|
||||||
"http{0}://{1}:{2}/", secure ? "s" : "", _hostname, port
|
"http{0}://{1}:{2}/", secure ? "s" : "", _hostname, port
|
||||||
@ -871,7 +873,6 @@ namespace WebSocketSharp.Server
|
|||||||
_listener = lsnr;
|
_listener = lsnr;
|
||||||
|
|
||||||
_log = _listener.Log;
|
_log = _listener.Log;
|
||||||
_rootPath = "./Public";
|
|
||||||
_services = new WebSocketServiceManager (_log);
|
_services = new WebSocketServiceManager (_log);
|
||||||
_sync = new object ();
|
_sync = new object ();
|
||||||
}
|
}
|
||||||
@ -900,7 +901,7 @@ namespace WebSocketSharp.Server
|
|||||||
: null;
|
: null;
|
||||||
|
|
||||||
if (evt != null)
|
if (evt != null)
|
||||||
evt (this, new HttpRequestEventArgs (context, _rootPath));
|
evt (this, new HttpRequestEventArgs (context, _docRootPath));
|
||||||
else
|
else
|
||||||
context.Response.StatusCode = (int) HttpStatusCode.NotImplemented;
|
context.Response.StatusCode = (int) HttpStatusCode.NotImplemented;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user