Async Socket监听器发送数据错误

时间:2013-01-28 13:29:40

标签: c# sockets asynchronous tcp asyncsocket

我正在围绕Socket类创建一个包装类。

我有一个连接异步回调来执行此操作:

public void StartConnecting()
{
    // Connect to a remote device.
    try
    {
        //_acceptIncomingData = acceptIncomingData;

        // Create a TCP/IP socket.
        _workingSocket = new Socket(AddressFamily.InterNetwork,
                SocketType.Stream, ProtocolType.Tcp);

        if (Information != null)
            Information(this, new InfoEventArgs("Connecting", "Working socket is initiating connection"));

        // Connect to the remote endpoint.
        _workingSocket.BeginConnect(_localEndPoint,
                new AsyncCallback(ConnectCallback), _workingSocket);
    }
    catch (Exception ex)
    {
        if (Error != null)
            Error(this, new ErrorEventArgs(ex.Message, ex));
    }
}

private void ConnectCallback(IAsyncResult ar)
{
    try
    {
        // Retrieve the socket from the state object.
        Socket client = (Socket)ar.AsyncState;

        // Complete the connection.
        client.EndConnect(ar);

        // ACTION CONNECTED COMPLETE
        if (Information != null)
            Information(this, new InfoEventArgs("Connected", "Working socket has now connected"));

        // Start Receiving on the socket

        // Create the state object.
        StateObject state = new StateObject();
        state.workSocket = client;

        // Begin receiving the data from the remote device.
        client.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0,
                new AsyncCallback(ReceiveCallback), state);
    }
    catch (Exception ex)
    {
        if (Error != null)
            Error(this, new ErrorEventArgs(ex.Message, ex));
    }
}

对于状态对象,它使用预定义的类:

public class StateObject
{
    // Client  socket.
    public Socket workSocket = null;
    // Size of receive buffer.
    public const int BufferSize = 1024;
    // Receive buffer.
    public byte[] buffer = new byte[BufferSize];
    // Received data string.
    public StringBuilder sb = new StringBuilder();
}

我使用它来连接已经开始监听的套接字,我将这个监听套接字称为Server,它使用Socket类。上面的代码是我称之为Client的套接字。当Client连接Server时,Client现在可以将数据发送到Server。但是,当我想接收从Server发送的数据时,我收到以下错误消息:

  

由于套接字是,因此不允许发送或接收数据的请求   未连接和(使用sendto在数据报套接字上发送时)   电话)没有提供地址。

我错过了什么?或者做得不好?

在提示检查Server是否正在侦听之后,我查看了我在我的包装器类中所谓的WorkingSocket,这是正在使用的套接字,我在检查完之后检查了成功Server听/ Client联系谈判。它确实说套接字没有连接。所以现在我的问题是:

是否需要将Server(侦听套接字)连接到Client以发送数据,如果ServerClient {{1}},如何执行此操作S'

1 个答案:

答案 0 :(得分:0)

我对1月份套接字的工作方式产生了误解。导致错误的原因是我不明白当客户端连接到侦听套接字时,侦听套接字会创建一个新的套接字对象,其中从客户端发送和接收的所有数据都将链接回来。

在上面的示例中,我应该创建并存储一个新的套接字供客户端操作,并使用它来发送和接收数据。