Click here to Skip to main content
Licence CPOL
First Posted 16 Sep 2011
Views 4,258
Bookmarked 7 times

How to Ping Network IP or Hostname using Silverlight?

By | 16 Sep 2011 | Article
Pinging a network IP or Hostname is not available in Silverlight. But you can do this using WCF service. In this post, I am going to implement the same thing for you.

Introduction

Pinging a network IP or Hostname is not available in Silverlight. But you can do this using WCF service. In this post, I am going to implement the same thing for you. I am using Silverlight 4 here. But this can also be possible in Silverlight 3.

Code of Use

Create a Silverlight application with Silverlight hosting website as “ASP.NET Web Site”:

image

Now this will create an XAML page for you by default. Add one TextBox and one Button into it. We will use TextBox to enter IP Address or the Hostname and on click of the Button, it will ping that entered IP or Hostname. As a limitation to the Silverlight, you can’t ping directly from the client application. You need to create a WCF service and using that, you can easily ping. Remember there are some limitations here too as you are pinging it from the WCF hosting server.

Let’s implement our WCF service. Create a service method named PingNetwork and pass the hostNameOrAddress as a string. This will be your IP address or the host’s DNS name. Then create an instance of System.Net.NetworkInformation.Ping and pass the required parameter to its “Send” method. This will return you “PingReply”. Now check the Status of the reply. There are several options available. I used only IPStatus.Success to check it and depending upon that, returning true or false.

public bool PingNetwork(string hostNameOrAddress)
{
    bool pingStatus = false;

    using (Ping p = new Ping())
    {
        string data = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
        byte[] buffer = Encoding.ASCII.GetBytes(data);
        int timeout = 120;

        try
        {
            PingReply reply = p.Send(hostNameOrAddress, timeout, buffer);
            pingStatus = (reply.Status == IPStatus.Success);
        }
        catch (Exception)
        {
            pingStatus = false;
        }
    }

    return pingStatus;
}

Now come to the client side implementation. Add the service reference to the Silverlight application and then call the service method with your IP Address or the DNS name of the host:

client.PingNetworkAsync("google.com");

As it is an asynchronous call, implement the “Completed” event for the method. In the completed event, check the e.Result value. If the server is able to ping, it will return true and in other case, it will return false.

This is a simple implementation of the logic. As told earlier, this will ping from server and not from the client.

History

  • 16th September, 2011: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

_ Kunal Chowdhury _

Software Developer

India India

Member

Follow on Twitter Follow on Twitter
Kunal Chowdhury is a Microsoft MVP (Most Valuable Professional) in Silverlight Technology, a Codeproject MVP & Mentor, DZone MVB (Most Valuable Blogger), Speaker in various Microsoft events, Author, passionate Blogger and a Software Engineer by profession.
 
He is currently working as a Software Engineer II in an MNC located at Pune, India. He has a very good skill over XAML, C#, Silverlight and WPF. He has a good working experience in Windows 7 application (including Multi-touch) development too.
 
He posts his findings in his technical blog. He also writes for SilverlightShow and Codeproject portal. Many of his articles were highlighted as "Article of the Day" in Microsoft sites.
 
He also has another website called Silverlight-Zone.com where he posts article links on Silverlight, Windows Phone 7 and XNA accumulated from various web sites to help the community grow on specified technologies.
 
You can reach him in his Blog : http://www.kunal-chowdhury.com
He is also available in Twitter : http://twitter.com/kunal2383

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionGood PinmemberArun Jacob21:08 26 Sep '11  
AnswerRe: Good Pinmvp_ Kunal Chowdhury _22:29 26 Sep '11  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 16 Sep 2011
Article Copyright 2011 by _ Kunal Chowdhury _
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid