组件服务 -> 计算机 -> 我的电脑 -> COM+ 应用程序
打开一个 COM+ 应用程序对象。
打开组件。
右键单击一个类并选择属性。
在“高级”下有一个“允许 IIS 固有属性”复选框。
如何以编程方式选中此复选框?
我可以通过编程方式创建和删除 COM+ 应用程序,但 ComApplication 类似乎无法更改创建的应用程序中的设置。
组件服务 -> 计算机 -> 我的电脑 -> COM+ 应用程序
打开一个 COM+ 应用程序对象。
打开组件。
右键单击一个类并选择属性。
在“高级”下有一个“允许 IIS 固有属性”复选框。
如何以编程方式选中此复选框?
我可以通过编程方式创建和删除 COM+ 应用程序,但 ComApplication 类似乎无法更改创建的应用程序中的设置。
我发现了如何做到这一点。
显然我必须得到一个 COM+ 应用程序的集合,找到我想要的(按名称),然后在应用程序中获取一个组件的集合,然后遍历集合并设置属性:
//get collection of applications
COMAdminCatalog catalog = new COMAdminCatalog();
catalog.Connect("127.0.0.1");
COMAdminCatalogCollection applications = (COMAdminCatalogCollection)catalog.GetCollection("Applications");
applications.Populate(); //no idea why that is necessary, seems to be
// appId for the application we are looking for
object appId = new object();
int count = applications.Count;
ICatalogObject item;
if (count == 0) return;
//search collection for item with name we are looking for
for (int i = 0; i < count; i++)
{
item = (ICatalogObject)applications.get_Item(i);
if (applicationName == (string)item.get_Value("Name"))
{
appId = item.Key;
Console.WriteLine("appId found for " + applicationName + ": " + appId.ToString());
}
}
// get all components for the application
COMAdminCatalogCollection components;
components = (COMAdminCatalogCollection)applications.GetCollection("Components", appId);
components.Populate(); // again, no idea why this is necessary
// set the attribute in all components
foreach (COMAdminCatalogObject component in components)
{
Console.WriteLine("Setting IISIntrinsics attribute in " + component.Name + ".");
component.set_Value("IISIntrinsics", true);
components.SaveChanges();
}
我认为这可以做得更好,用更少的铸件。但我不知道怎么做。
这会做。
我对这个特殊属性没有经验,但它似乎记录在MSDN中。