vote up 1 vote down star

Can anyone advise what the best way to check (using .NET 3.5) if a remote server is available?

I was thinking of using the following code but would like to know if a better way exists if the community has another option.

TcpClient client = new TcpClient("MyServer", 80);
if (!client.Connected)
{
    throw new Exception("Unable to connect to MyServer on Port 80");
}
client.Close();
flag

4 Answers

vote up 4 vote down check

You could ping it

You could download the default page from it

You could do a HEAD request

If it's a local IIS6 server on your network, and you have some admin details, you could connect to IIS using some DirectoryEntry code

Some of the answers on 136615 might help too, specifically the accepted answer that talks about sockets

For the print servers (or, specifically, the printers), the code by K Scott here might help. It's fun code to play with anyway :-) That code mentions dns.resolve, which is obsoleted and replaced by Dns.GetHostEntry

I'm about out of ideas :-)

link|flag
vote up 4 vote down

If you just want to see whether a given server is online, then a simple ping should do the job in most cases.

PingReply pingReply;
using (var ping = new Ping())
    pingReply = ping.Send("http://www.stackoverflow.com/");
var available = pingReply.Status == IPStatus.Success;

Using this method you're not abusing the HTTP server in any way, too.

Otherwise (if you want to check whether a connection is possible on a specific port), that basically looks fine.

link|flag
I was under the impression that using the Ping object was not advisable in a corporate intranet or within a firewalled network? I probably should have put that I want to check for availability on a corporate network. Can anyone comment? – Kane Jun 25 at 11:21
@Kane: Why wouldn't it be advisable? A ping is the standard, tried and tested, way for checking availability of a host. Opening lots of HTTP connections and doing nothing is more likely to amount to abuse/malice. If the ping port is closed, then that's a different matter - however, it ought to be open. – Noldorin Jun 25 at 11:25
I thought that Ping might not work if a firewall blocks the Ping (ICMP Echo) packets? Could this be true as I really don't know? – Kane Jun 25 at 11:29
2  
Admittedly I don't work on a corporate network, but I haven't seen ping blocked on any of the larger accademic institutions networks to which I have had access. This is probably because ping is used so frequently by network admins for checking network connectivity – Crippledsmurf Jun 25 at 12:09
vote up 0 vote down

I'm guessing you want to check to see if a website is available. You could just use a System.Net.WebRequest and check the result.

Update: Based on your comment, if you've got a few servers (and services) to monitor, then maybe it'd be a better idea to use a package such as HostMonitor or IPSentry instead of rolling your own.

link|flag
I need to check a number of servers. Some of which are web servers some a simple Windows based file/print servers. – Kane Jun 25 at 11:20
vote up 0 vote down

Thanks for this post. I have got a great help with it. Keep posting such code segments. Best wishes with you.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.