2

我一直在使用 TcpListener 类在 C# 中编写我自己的 http Web 服务器。现在在任何人提到这一点之前,我知道 HttpListener,但是在之前使用它之后,由于防火墙异常和需要拥有管理员帐户等,我遇到了一些问题。对于我的应用程序,它只是更容易制作简单的内置网络服务器。我一直在使用 python 应用程序连接到我的 C# 网络服务器,并发送一个简单的 GET 请求,然后接收一个简单的响应。

我的问题是这个..服务器应该关闭连接还是客户端?我问是因为如果我在发送响应后关闭服务器中的连接,我的 Python 应用程序并不总是能够读取所有响应。相反,会抛出一个套接字错误“错误 10054,'Connection reset by peer'”。但是,如果我强制 python 应用程序关闭连接,我不确定如何在我的 C# 服务器上检测到它,因为 C# TcpClient 不包含断开连接事件。那我该怎么办?我怎么知道连接的客户端何时收到完整的响应,以便我可以关闭连接?

目前,这有效(使用线程睡眠)

// Write headers and body to the Socket
        NetworkStream Stream = Client.GetStream();

        // Write Headers
        byte[] Buffer = Encoding.UTF8.GetBytes(Headers);
        Stream.Write(Buffer, 0, Buffer.Length);

        // Write Response Data if Request method is not HEAD
        if (Request.RequestMethod != HttpRequestMethod.HEAD)
            Stream.Write(BodyByteArr, 0, BodyByteArr.Length);

        Stream.Flush();

        System.Threading.Thread.Sleep(100);
        Stream.Close();
        Client.Close();

我认为我需要一个比 Thread.Sleep() 更好的替代方案,如果客户端花费的时间超过睡眠时间来接收响应,它可能也不起作用(慢速连接)

发送到 Http 服务器的标头:

GET /test HTTP/1.1
Host: 127.0.0.1
Connection: close

发送回客户端的标头:

HTTP/1.1 200 OK
Date: {Now}
Server: MiniHttp-ASPServer
Content-Type: text/plain; charset=utf-8
Content-Length: {length}
Connection: close

{contents}
4

2 回答 2

0

您是否看过 h[ttp://msdn.microsoft.com/en-us/library/w89fhyex.aspx][1] 上的同步和异步套接字示例

[1]:http: //msdn.microsoft.com/en-us/library/w89fhyex.aspx

我认为您可以在解决方案中使用一些逻辑。在同步服务器示例(片段)中:

       while (true) {
            Console.WriteLine("Waiting for a connection...");
            // Program is suspended while waiting for an incoming                      connection.
            Socket handler = listener.Accept();
            data = null;

            // An incoming connection needs to be processed.
            while (true) {
                bytes = new byte[1024];
                int bytesRec = handler.Receive(bytes);
                data += Encoding.ASCII.GetString(bytes,0,bytesRec);
                if (data.IndexOf("<EOF>") > -1) {
                    break;
                }
            }

            // Show the data on the console.
            Console.WriteLine( "Text received : {0}", data);

            // Echo the data back to the client.
            byte[] msg = Encoding.ASCII.GetBytes(data);

            handler.Send(msg);
            handler.Shutdown(SocketShutdown.Both);
            handler.Close();
        }

在客户端:

         sender.Connect(remoteEP);

            Console.WriteLine("Socket connected to {0}",
                              sender.RemoteEndPoint.ToString());

            // Encode the data string into a byte array.
            byte[] msg = Encoding.ASCII.GetBytes("This is a test<EOF>");

            // Send the data through the socket.
            int bytesSent = sender.Send(msg);

            // Receive the response from the remote device.
            int bytesRec = sender.Receive(bytes);
            Console.WriteLine("Echoed test = {0}",
                                Encoding.ASCII.GetString(bytes,0,bytesRec));

            // Release the socket.
            sender.Shutdown(SocketShutdown.Both);
            sender.Close();
于 2013-07-31T14:09:03.997 回答
0

取自 HTTP1.1 RFC:

如果客户端或服务器在 Connection 标头中发送关闭令牌,则该请求将成为连接的最后一个。

因此,当您的服务器关闭连接时,它之前必须使用 Connection: close 标头来回答。

我不知道 C# 并且它是 TCP 客户端,但是在套接字上发送可能会失败有几个原因。在关闭应用程序之前,我看不到您处理任何这些。

您必须重试发送答案,直到您确定它已被完整阅读。我认为您的 Connection: close 标头永远不会到达您的客户端,这就是使用“对等方重置连接”的原因。

于 2013-09-26T09:53:07.187 回答