HttpListener问题:每个HTTP请求都会导致HttpListener返回两个上下文

时间:2011-10-15 23:10:39

标签: c# http asynchronous httplistener

我一直在Windows服务应用程序中放置一个小的嵌入式HTTP服务器,该应用程序监听来自网络上讲HTTP的其他设备的更新。

对于每个HTTP请求,处理请求/响应的代码执行两次,我希望它只运行一次。我使用AsyncGetContext方法并使用同步版GetContext尝试了代码 - 最终结果是一样的。

代码

public void RunService()
{
    var prefix = "http://*:4333/";
    HttpListener listener = new HttpListener();
    listener.Prefixes.Add(prefix);
    try
    {
        listener.Start();
        _logger.Debug(String.Format("Listening on http.sys prefix: {0}", prefix));
    }
    catch (HttpListenerException hlex)
    {
        _logger.Error(String.Format("HttpListener failed to start listening. Error Code: {0}", hlex.ErrorCode));
        return;
    }
    while (listener.IsListening)
    {
        var context = listener.GetContext(); // This line returns a second time through the while loop for each request
        ProcessRequest(context);
    }
    listener.Close();
}

private void ProcessRequest(HttpListenerContext context) 
{
    // Get the data from the HTTP stream
    var body = new StreamReader(context.Request.InputStream).ReadToEnd();
    _logger.Debug(body);

    byte[] b = Encoding.UTF8.GetBytes("OK");
    context.Response.StatusCode = 200;
    context.Response.KeepAlive = false;
    context.Response.ContentLength64 = b.Length;

    var output = context.Response.OutputStream;
    output.Write(b, 0, b.Length);
    output.Close();
    context.Response.Close();
}

我是否有任何明显的遗漏,我已经没有想法来追查这个问题。

1 个答案:

答案 0 :(得分:10)

好的,问题是我使用网络浏览器测试HTTP连接,默认情况下,网络浏览器也会发送对favicon.ico的请求。所以实际上有两个请求。感谢@Inuyasha建议我和Wireshark一起检查。