Click here to Skip to main content
15,881,812 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

When i use

C#
string computerName;
string applicationName;

catalog = new COMAdminCatalog();
if (computerName != ".")
{
    catalog.Connect(computerName);
}
catalog.StartApplication(applicationName);


the com+ application is running but when I check component's status in component service i can't see any object in each component, theres nothing in object, activated and pooling columns. It's happens in 50% of cases the program start. How do I make the objects show up?

Thanks for any answers :)
Posted
Updated 23-Nov-12 3:36am
v5
Comments
DaveAuld 23-Nov-12 9:43am    
When testing strings it is recommended to use .equals) e.g. if (!computerName.equals("."))

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900