检查是否有客户端套接字可以连接
本文关键字:连接 套接字 客户端 是否 检查 | 更新日期: 2023-09-27 17:50:38
我们有web应用程序,它作为Socket侦听器工作。我想检查AcceptSocket之前,是否有任何客户端套接字可用来连接到这个监听器。我想显示一个消息,如果没有客户端套接字连接和取消发送/接收数据。
我使用TCPListner使用ASP.net c#的web应用程序。客户端套接字是使用Winsock控制的windows VB6应用程序。
socket程序,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)));
}
}
}
}
您可以使用TcpListener
的Pending
方法,参见http://msdn.microsoft.com/en-us/library/system.net.sockets.tcplistener.pending.aspx