vote up 0 vote down star

In my ASP.NET web app I'd like to look up the name it was given when it was created in IIS, which is unique to the server. I'd not interested in the domain name for the web site but the actual name given to the site in IIS.

I need to be able to do it reliably for IIS6 and 7.

To be clear I'm talking about the given name in IIS, not the domain name and not the virtual directory path.

Value from IIS I'd like to read from C#

flag
Can you elaborate a little more on the motivation? – Charles Conway Oct 31 at 16:20
I'm doing licensing for a web application I wrote and I need to make sure a license key is only used once per web app even on the same server. The web app works with multiple domain names assigned to the IIS site so binding the key to the domain name of the site won't do. In the same vain binding the key to the machine name won't do either as my app might be installed for multiple clients on the same machine. In short I need something uniquely identifying the IIS web site on a particular machine. Since IIS doesn't allow multiple sites with the same name I figure that's the way to go. – Søren Spelling Lund Oct 31 at 16:25
I didn't mean to come off sounding condescending, I'm just curious why someone would want to do that. – Charles Conway Oct 31 at 16:25
I'm not sure about IIS7 but in IIS6 each site is given a unique siteId. I'd be surprised if this isn't the case in IIS7 – Charles Conway Oct 31 at 16:29
That's true and that's my fallback strategy. Only problem is that if you delete the site you'll get a new id, which would make the key useless. That's why I'd like to bind it to the site name instead. You're more likely to reuse that. – Søren Spelling Lund Oct 31 at 16:33
show 1 more comment

3 Answers

vote up 4 vote down check
System.Web.Hosting.HostingEnvironment.ApplicationHost.GetSiteName();
link|flag
That's exactly what I was looking for. Thank you so much. Do you know whether it works for both IIS6 and 7? – Søren Spelling Lund Nov 2 at 18:28
Sorry, I haven't tested it in IIS 6. – Mehdi Golchin Nov 2 at 18:47
I tested it for IIS 7/5.1 a few minutes age, I think it works for IIS 6 (90%). – Mehdi Golchin Nov 2 at 19:09
vote up 1 vote down

You are looking for ServerManager (Microsoft.Web.Administration) which provides read and write access to the IIS 7.0 configuration system.

Iterate through Microsoft.Web.Administration.SiteCollection, get a reference to your website using the Site Object and read the value of the Name property.

// Snippet        
using (ServerManager serverManager = new ServerManager()) { 

var sites = serverManager.Sites; 
foreach (Site site in sites) { 
         Console.WriteLine(site.Name); // This will return the WebSite name
}

You can also use LINQ to query the ServerManager.Sites collection (see example below)

// Start all stopped WebSites using the power of Linq :)
var sites = (from site in serverManager.Sites 
            where site.State == ObjectState.Stopped 
            orderby site.Name 
            select site); 

        foreach (Site site in sites) { 
            site.Start(); 
        }

Note : Microsoft.Web.Administration works only with IIS7.

For IIS6 you can use both ADSI and WMI to do this, but I suggest you to go for WMI which is faster than ADSI. If using WMI, have a look at WMI Code Creator 1.0 (Free / Developed by Microsoft). It will generate the code for you.

HTH

link|flag
vote up 1 vote down

Here is a related post in retrieving the site Id.

Here some code that might work for you:

using System.DirectoryServices;
using System;

public class IISAdmin
{
   public static void GetWebsiteID(string websiteName)
   {
      DirectoryEntry w3svc = new DirectoryEntry("IIS://localhost/w3svc");

     foreach(DirectoryEntry de in w3svc.Children)
     {
        if(de.SchemaClassName == "IIsWebServer" && de.Properties["ServerComment"][0].ToString() == websiteName)
        {
           Console.Write(de.Name);
        }

     }

  }
  public static void Main()
  {
     GetWebsiteID("Default Web Site");
  }

}

Here's the link to the original post.

I'm not sure if it will work on IIS7, but if you install the IIS6 compatibility components for IIS7 it should work.

link|flag

Your Answer

Get an OpenID
or

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