vote up 1 vote down star

Is there a way to programmatically check if ASP.NET is "allowed" in Web Service Extensions on IIS 6.0. I know I can set this by using aspnet_regiis.exe -i -enable, but how do I check this using code?

Regards Deepak

flag

25% accept rate
You know you can upvote a correct answer if you really like it :) – Kev Oct 22 at 12:28

1 Answer

vote up 0 vote down check

Here's a C# snippet of code that should do the trick:

using System.DirectoryServices

static void Main(string[] args)
{
    using (DirectoryEntry de = new DirectoryEntry("IIS://localhost/W3SVC"))
    {
        foreach (string ext in de.Properties["WebSvcExtRestrictionList"])
        {
            if (ext.StartsWith("1,") && ext.IndexOf("ASP.NET v1.1") != -1)
            {
                Console.WriteLine("ASP.NET 1.1 is enabled");
            }

            if (ext.StartsWith("1,") && ext.IndexOf("ASP.NET v2.0") != -1)
            {
                Console.WriteLine("ASP.NET 2.0 is enabled");
            }
        }
    }
}

You need to add a reference to the System.DirectoryServices assembly on the .NET tab of the Add References dialogue.

link|flag
Thanks that worked !! – DEE Oct 22 at 12:26

Your Answer

Get an OpenID
or

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