windows服务上的本地Http服务器

本文关键字:Http 服务器 服务 windows | 更新日期: 2023-09-27 18:08:34

我使用这段代码来编写作为本地http请求服务器的Windows Service。

public void StartMe()
    {
        System.Net.IPAddress localAddr = System.Net.IPAddress.Parse("127.0.0.1");
        System.Net.Sockets.TcpListener server = new System.Net.Sockets.TcpListener(localAddr, 1234);
        server.Start();
        Byte[] bytes = new Byte[1024];
        String data = null;
        while (RunThread)
        {
            System.Net.Sockets.TcpClient client = server.AcceptTcpClient();
            data = null;
            System.Net.Sockets.NetworkStream stream = client.GetStream();
            stream.Read(bytes, 0, bytes.Length);
            data = System.Text.Encoding.ASCII.GetString(bytes);
            System.IO.StreamWriter sw = new System.IO.StreamWriter("c:''MyLog.txt", true);
            sw.WriteLine(data);
            sw.Close();
            client.Close();
        }
    }

我有这个代码的一些问题:首先,在data字符串中,我在浏览器中写入此URL后得到这样的内容http://127.0.0.1:1234/helloWorld

GET /helloWorld HTTP/1.1
Host: 127.0.0.1:1234
Connection: keep-alive
Cache-Control: max-age=0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31
Accept-Encoding: gzip,deflate,sdch
Accept-Language: he-IL,he;q=0.8,en-US;q=0.6,en;q=0.4
Accept-Charset: windows-1255,utf-8;q=0.7,*;q=0.3

我想知道如何从这个例子中只得到helloWorld。第二个问题是,我希望服务器将响应浏览器,它只给我关闭连接。

windows服务上的本地Http服务器

几天前我也问过类似的问题。更好地实现HTTPListener-Class。让生活更轻松。

请看下面的例子:http://msdn.microsoft.com/de-de/library/system.net.httplistener%28v=vs.85%29.aspx

你的HelloWorld是这样被检索的:

HttpListenerContext context = listener.GetContext(); // Waits for incomming request
HttpListenerRequest request = context.Request;
string url = request.RawUrl; // This would contain "/helloworld"

如果你想等待不止一个请求,要么实现异步方式,要么这样做:

new Thread(() =>
{
    while(listener.IsListening)
    {
        handleRequest(listener.GetContext());
    }
});
...
void handleRequest(HttpListenerContext context) { // Do stuff here }

那个代码样例是我脑子里想出来的。这可能需要一些摸索,但我希望你得到的想法。