0

我们有 web 应用程序,它作为 Socket Listner 工作。我想在 AcceptSocket 之前检查是否有任何客户端套接字可用于连接到此侦听器。如果没有客户端套接字连接并取消发送/接收数据,我想显示一条消息。

我正在将 TCPListner 使用 ASP.net C# 用于 Web 应用程序。客户端套接字是使用 Winsock 控件的 windows VB6 应用程序。

套接程序, ASP.Net C#, VS2008

谢谢你的回复,

请参阅下面我与服务器通信的示例代码

clsCommunication.cs,这个类文件导入到 .aspx 页面。我尝试使用 Console.WriteLine(),但无法显示此消息。

我想显示警报框,以便用户了解状态栏上没有连接或显示或突出显示框架/框等。

public void Communicationcation()
{
    byte[] bytes = new byte[1024];
    string strSiteID = "SiteID";

    socket.Start();
    if (!socket.Pending())
    {
        Console.WriteLine("Sorry, no connection requests have arrived");
    }
    else
    {
        client = socket.AcceptSocket();
        if (client.Connected == true)
        {
            decimal dSiteID = decimal.Parse(GetSiteSetting(ref strSiteID).ToString());
            IPEndPoint clientep = (IPEndPoint)client.RemoteEndPoint;

            WriteLog(string.Format("Connected with {0} at port {1}",  clientep.Address,  clientep.Port));
            string strWelcome = STARTMESSAGE + "WHOAMI" + "     " + dSiteID + " " + dSiteID + FINISHMESSAGE;
            byte[] data = new byte[1024];
            data = Encoding.ASCII.GetBytes(strWelcome);
            int i = client.Send(data, data.Length, SocketFlags.None);
            WriteLog(String.Format("Message sent {0} bytes!", i));

            //Get reply from the Connected cleint.
            i = client.Receive(bytes, bytes.Length, SocketFlags.None);
            if (i != -1)
            {
                WriteLog(string.Format(System.Text.Encoding.UTF8.GetString(bytes)));
            }
        }
    }
}
4

1 回答 1

1

您可以使用TcpListener' 的Pending方法,请参阅http://msdn.microsoft.com/en-us/library/system.net.sockets.tcplistener.pending.aspx

于 2013-01-03T14:54:18.440 回答