2
I’m having a problem finding the name of the property of COM+ so I can change the content of it, by my researches I need to know the correct name of the value of the parameter to be able to change it, in case it is the Name of Remote Server
COMAdminCatalogCollection applications;
COMAdminCatalog catalog;
catalog = new COMAdminCatalog();
applications = (COMAdminCatalogCollection)catalog.GetCollection("Applications");
applications.Populate();
string x = "Nome Sistema";
dynamic servidor = "Caminho Servidor";
foreach (COMAdminCatalogObject application in applications)
{
if (application.Name == x)
{
application.Value["Nome do parametro que estou atras"] = servidor;
}
}
Thank you very much, it worked here...
– Cayo Da Silva Lima