我正在使用以下代码以编程方式为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)
答案 0 :(得分:0)
事实证明我的问题比我想象的更为根本。首先,IIS 6不支持集成管道模式,因此交换机ManagedPipelineMode
甚至不存在。此外,Enable32BitAppOnWin64
也不存在这种方式,要打开该功能,必须运行命令(http://extended64.com/blogs/rhoffman/archive/2005/05/10/482.aspx)