64 lines
1.4 KiB
C#
64 lines
1.4 KiB
C#
using System;
|
|
using WebSocketSharp;
|
|
using WebSocketSharp.Net;
|
|
using WebSocketSharp.Server;
|
|
|
|
namespace Example3
|
|
{
|
|
public class Program
|
|
{
|
|
private static HttpServer _httpsv;
|
|
|
|
public static void Main(string[] args)
|
|
{
|
|
_httpsv = new HttpServer(4649);
|
|
//_httpsv.Sweeped = false;
|
|
_httpsv.AddWebSocketService<Echo>("/Echo");
|
|
_httpsv.AddWebSocketService<Chat>("/Chat");
|
|
|
|
_httpsv.OnResponseToGet += (sender, e) =>
|
|
{
|
|
onResponseToGet(e);
|
|
};
|
|
|
|
_httpsv.OnError += (sender, e) =>
|
|
{
|
|
Console.WriteLine(e.Message);
|
|
};
|
|
|
|
_httpsv.Start();
|
|
Console.WriteLine("HTTP Server listening on port: {0} service path:", _httpsv.Port);
|
|
foreach (var path in _httpsv.ServicePaths)
|
|
Console.WriteLine(" {0}", path);
|
|
Console.WriteLine();
|
|
|
|
Console.WriteLine("Press any key to stop server...");
|
|
Console.ReadLine();
|
|
|
|
_httpsv.Stop();
|
|
}
|
|
|
|
private static byte[] getContent(string path)
|
|
{
|
|
if (path == "/")
|
|
path += "index.html";
|
|
|
|
return _httpsv.GetFile(path);
|
|
}
|
|
|
|
private static void onResponseToGet(ResponseEventArgs eventArgs)
|
|
{
|
|
var request = eventArgs.Request;
|
|
var response = eventArgs.Response;
|
|
var content = getContent(request.RawUrl);
|
|
if (content != null)
|
|
{
|
|
response.WriteContent(content);
|
|
return;
|
|
}
|
|
|
|
response.StatusCode = (int)HttpStatusCode.NotFound;
|
|
}
|
|
}
|
|
}
|