Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i've written a code to retrieve list of IIS services on a remote computer, now I am trying to retrieve information about the .svc file of the web service. The code below works for all the services that are stored in the inetpub folder, but i know it is not necessary to store the services there and it can be saved anywhere.

public static void IISWebSvcLister(string Hos)
    {
        try
        {
            string s = null;
            Hos = Hos.Trim();
            DirectoryEntry w3svc = new DirectoryEntry("IIS://" + Hos + "/w3svc/1/root");

            foreach (DirectoryEntry de in w3svc.Children)
            {
                if (de.Children.ToString() != null)
                {
                    s += de.Name.ToString() + "\n";
                    //string sp = HttpContext.Current.Server.MapPath(@"~\\"+Hos+"\c$\inetpub\wwwroot\");

                    try
                    {
                        string[] filePaths = Directory.GetFiles(@"\\" + Hos + @"\c$\inetpub\wwwroot\" + de.Name.ToString(), "*.svc", SearchOption.AllDirectories);

                        for (int i = 0; i < filePaths.Length; i++)
                        {
                            FileInfo fi = new FileInfo(filePaths[i]);
                            Console.Write(fi.CreationTime.ToString() + "\t" + fi.Length.ToString());
                            string[] k = filePaths[i].Split('\\');
                            filePaths[i] = k[k.Length-2]+"\\"+k[k.Length - 1];
                            Console.WriteLine("\t" + filePaths[i]);
                        }
                    }
                    catch (Exception)
                    {
                        Console.WriteLine(de.Name.ToString());
                    }
                }
            }
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.Message);
        }
    }

How do i get the files for the services not stored in c:\inetpub\wwwroot ?

Thanks

share|improve this question
Why aren't you using Server.MapPath? You've commented it out. Wouldn't that help you find files that aren't in inetpub? – Rup Jun 27 '11 at 9:59
Its giving me an error! That is why it is commented if you see my code. the error is :Object reference not set to an instance of an object. – Aadi Droid Jun 27 '11 at 10:02
It's only null if you're not running the code from within an ASP.NET application or HTTP WCF service... Are you running this outside of a Web context? – Roy Dictus Jun 27 '11 at 10:16
its not ASP, making a WPF application for desktop. – Aadi Droid Jun 27 '11 at 10:17
Why are you doing that? – Ladislav Mrnka Jun 27 '11 at 10:24
show 5 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.