我们有Web应用程序,它作为Socket Listner工作。我想在AcceptSocket之前检查一下,是否有任何Client Socket可用于连接到这个列表器。如果没有要连接的客户端套接字并取消发送/接收数据,我想显示一条消息。
我正在使用TCPListner使用ASP.net C#作为Web应用程序。客户端套接字是使用Winsock控件的Windows VB6应用程序。
感谢您的回复,
请参阅下面我与服务器进行通信的示例代码
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)));
}
}
}
}
答案 0 :(得分:1)
您可以使用TcpListener
的{{1}}方法,请参阅http://msdn.microsoft.com/en-us/library/system.net.sockets.tcplistener.pending.aspx