It is always better to ping a server before actually calling the server from your client application. The Ping service will try to post a dummy request to the server which is used to be very small and tries to get the Response from the server. Generally if the server response is available, the server sends the response immediately.
Hence you can save a considerable amount of time building the Request body. You also never need to wait for so long time for Timeouts.
To Ping a Server, you can use:
public static bool IsConnectedToInternet
{
get
{
Uri url = new Uri("www.abhisheksur.com") string pingurl = string.Format("{0}", url.Host) string host = pingurl bool result = false Ping p = new Ping() try
{
PingReply reply = p.Send(host, 3000) if (reply.Status == IPStatus.Success)
return true }
catch { }
return result }
}
The PING sends an ICMP (Internet Control Message Protocol) echo request to the server and waits to receive the echo back. If the value of Status is success, the
PingReply is successful.
Did you like his post?
Oh, lets go a bit further to know him better.
Visit his Website :
www.abhisheksur.com to know more about Abhishek.
Abhishek also authored a book on .NET 4.5 Features and recommends you to read it, you will learn a lot from it.
http://bit.ly/EXPERTCookBook
Basically he is from India, who loves to explore the .NET world. He loves to code and in his leisure you always find him talking about technical stuffs.
Presently he is working in WPF, a new foundation to UI development, but mostly he likes to work on architecture and business classes. ASP.NET is one of his strength as well.
Have any problem? Write to him in his
Forum.
You can also mail him directly to
abhi2434@yahoo.com
Want a Coder like him for your project?
Drop him a mail to
contact@abhisheksur.com
Visit His Blog
Dotnet Tricks and Tips
Dont forget to vote or share your comments about his Writing