我正在用C#编写一个程序,一个接一个地查询我们域上的Windows服务器。目前,如果服务器脱机或出现故障,程序将挂起等待回复,等待的最佳方式是什么,如果没有收到响应,请转到下一个服务器?我以前从未这样做过,所以非常感谢任何帮助。
由于 史蒂夫
答案 0 :(得分:0)
听起来好像你想看看BackgroundWorker和线程(Thread类)。我想你通过在服务器上进行任何调用来阻止UI线程。
通过使用线程,您可以准确地向用户报告正在发生的事情,并在需要时应用您自己的超时。
答案 1 :(得分:0)
您可以使用C#中的PingReplay Class ping您的服务器:
using System;
using System.Net;
using System.Net.NetworkInformation;
using System.Text;
namespace PingTest
{
public class PingExample
{
// args[0] can be an IPaddress or host name.
public static void Main (string[] args)
{
Ping pingSender = new Ping();
PingOptions options = new PingOptions();
options.DontFragment = true;
// Create a buffer of 32 bytes of data to be transmitted.
string data = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
byte[] buffer = Encoding.ASCII.GetBytes (data);
int timeout = 120;
PingReply reply = pingSender.Send (args[0], timeout, buffer, options);
if (reply.Status == IPStatus.Success)
{
Console.WriteLine ("Address: {0}", reply.Address.ToString ());
Console.WriteLine ("RoundTrip time: {0}", reply.RoundtripTime);
Console.WriteLine ("Time to live: {0}", reply.Options.Ttl);
Console.WriteLine ("Don't fragment: {0}", reply.Options.DontFragment);
Console.WriteLine ("Buffer size: {0}", reply.Buffer.Length);
}
}
}
}
该代码已从MSDN, see here采用。