我使用TcpListener类在C#中编写自己的http Web服务器。现在在任何人提到这个之前,我知道HttpListener,但在使用之前,由于防火墙异常和需要管理员帐户等问题,I.ve有一些问题。对于我的应用程序,它更容易制作一个简单的,构建的Web服务器。我一直在使用python应用程序连接到我的C#webserver,并发送一个简单的GET请求,并收到一个简单的响应。
我的问题是这个..服务器应该关闭连接还是客户端?我问,因为如果我在发送响应后关闭服务器中的连接,我的Python应用程序并不总是能够读取所有响应。相反,将抛出套接字错误“错误10054,'由同行连接重置'”。但是,如果我强制python应用程序关闭连接,我不知道如何在我的C#服务器上检测到,因为C#TcpClient不包含disconnect事件。那我该怎么办?我如何知道连接的客户端何时收到完整响应,以便我可以关闭连接?
目前,这有效(线程休眠)
// 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 Server的标头:
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}
答案 0 :(得分: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();
答案 1 :(得分:0)
取自HTTP1.1 RFC:
如果客户端或服务器在Connection头中发送关闭令牌,则该请求将成为连接的最后一个请求。
因此,当您的服务器关闭连接时,它之前必须使用Connection:close标头来回答。
我不知道C#和TCP客户端,但是有几个原因导致套接字上的发送失败。在关闭应用程序之前,我无法看到您处理任何这些问题。
您必须重试发送答案,直到您确定已完全阅读。 我认为您的Connection:close标头永远不会到达您的客户端,这就是“通过对等方重置连接”的答案的原因。