以编程方式创建应用程序池,错误设置“ManagedPipelineMode”

时间:2013-09-03 19:24:44

标签: c# iis iis-6 application-pool directoryentry

我正在使用以下代码以编程方式为IIS 6(Windows Server 2003R2)创建应用程序池,但在尝试设置ManagedPipelineMode

的行上收到错误

尝试1

        string metabasePath = @"IIS://localhost/W3SVC/AppPools";

        DirectoryEntry apppools = new DirectoryEntry(metabasePath);
        DirectoryEntry newpool = apppools.Children.Add(AppPoolName, "IIsApplicationPool");
        newpool.Properties["managedRuntimeVersion"].Value = "v4.0";
        newpool.InvokeSet("ManagedPipelineMode", new Object[] { 0 }); //exception thrown on this line
        newpool.Properties["Enable32BitAppOnWin64"].Value = true;
        if (!string.IsNullOrEmpty(username))
        {
            newpool.Properties["AppPoolIdentityType"].Value = 3;
            newpool.Properties["WAMUserName"].Value = username;
            newpool.Properties["WAMUserPass"].Value = password;
        }
        newpool.CommitChanges();

尝试2

        string metabasePath = @"IIS://localhost/W3SVC/AppPools";

        DirectoryEntry apppools = new DirectoryEntry(metabasePath);
        DirectoryEntry newpool = apppools.Children.Add(AppPoolName, "IIsApplicationPool");
        newpool.Properties["managedRuntimeVersion"].Value = "v4.0";
        newpool.Properties["ManagedPipelineMode"][0] = 0; //exception thrown on this line
        newpool.Properties["Enable32BitAppOnWin64"].Value = true;
        if (!string.IsNullOrEmpty(username))
        {
            newpool.Properties["AppPoolIdentityType"].Value = 3;
            newpool.Properties["WAMUserName"].Value = username;
            newpool.Properties["WAMUserPass"].Value = password;
        }
        newpool.CommitChanges();

无论如何都会抛出相同的异常。

例外:

Exception from HRESULT: 0x80005006
    at System.DirectoryServices.Interop.UnsafeNativeMethods.IAds.PutEx(Int32 lnControlCode, String bstrName, Object vProp)
    at System.DirectoryServices.PropertyValueCollection.OnClearComplete()
    at System.DirectoryServices.PropertyValueCollection.set_Value(Object value)

1 个答案:

答案 0 :(得分:0)

事实证明我的问题比我想象的更为根本。首先,IIS 6不支持集成管道模式,因此交换机ManagedPipelineMode甚至不存在。此外,Enable32BitAppOnWin64也不存在这种方式,要打开该功能,必须运行命令(http://extended64.com/blogs/rhoffman/archive/2005/05/10/482.aspx