1

我正在研究 C#(客户端)和 Python(服务器)之间的基本套接字通信,但我不明白客户端出现此错误的原因:

[错误] 致命的未处理异常:System.Net.Sockets.SocketException:连接在 /private/tmp/monobuild/build/BUILD/ 中的 System.Net.Sockets.Socket.Connect (System.Net.EndPoint remoteEP) [0x00159] 处被拒绝mono-2.10.9/mcs/class/System/System.Net.Sockets/Socket_2_1.cs:1262 在 System.Net.Sockets.TcpClient.Connect (System.Net.IPEndPoint remote_end_point) [0x00000] 在 /private/tmp/ monobuild/build/BUILD/mono-2.10.9/mcs/class/System/System.Net.Sockets/TcpClient.cs:284 在 System.Net.Sockets.TcpClient.Connect (System.Net.IPAddress[] ipAddresses, Int32端口)[0x000b3] 在 /private/tmp/monobuild/build/BUILD/mono-2.10.9/mcs/class/System/System.Net.Sockets/TcpClient.cs:355

我的程序真的很短很容易,所以我想这是一个菜鸟问题,但我就是不明白。我想要的只是一个客户端向服务器发送一条消息,该消息将在控制台上打印出来。

这是 C# 客户端(错误来自 :socket.Connect("localhost",9999);)

using System;
using System.Net.Sockets;

namespace MyClient
 {
class Client_Socket{
    public void Publish(){
TcpClient socket = new TcpClient();
socket.Connect("localhost",9999);
NetworkStream network = socket.GetStream();
System.IO.StreamWriter streamWriter= new System.IO.StreamWriter(network); 
streamWriter.WriteLine("MESSAGER HARGONIEN");
streamWriter.Flush();   
network.Close();
   }

}
}

和 Python 服务器:

from socket import *

if __name__ == "__main__":
    while(1):
        PySocket = socket (AF_INET,SOCK_DGRAM)
        PySocket.bind (('localhost',9999))
        Donnee, Client = PySocket.recvfrom (1024)
        print(Donnee)

谢谢你的帮助。

4

1 回答 1

5

你有两个问题。首先是您绑定到localhost. 0.0.0.0如果您希望其他计算机能够连接,您可能希望绑定到:

PySocket.bind (('0.0.0.0',9999))

另一个问题是您使用 UDP 服务并尝试使用 TCP 连接。如果你想使用 UDP,你可以使用UdpClient而不是TcpClient. 如果要使用 TCP,则必须使用SOCK_STREAM而不是SOCK_DGRAM和使用listen,acceptrecv而不是recvfrom.

于 2012-07-08T21:08:21.757 回答