/* */ namespace TestComAdmin { using System; using System.Xml; using System.Reflection; using COMHelperSpace; using COMAdminHelperSpace; public class testclass { public testclass() { } public static void Main(string[] args) { try { COMPlusAdminHelper oCOMhelper = new COMPlusAdminHelper(); Console.Write ("----------------------------------------------------------------------------\n"); Console.Write (" Copyright Ranjeet Chakraborty, All rights reserved May 2000 \n"); Console.Write ("----------------------------------------------------------------------------\n"); Console.Write ("Querying the COM+ Catalog through the Administration objects. Please wait...\n\n\n\n"); oCOMhelper.GenerateReport(); Console.Write ("XML Output file generated in the exe's directory. Done !\n"); Console.Write ("----------------------------------------------------------------------------\n"); return; } catch (Exception e) { Console.WriteLine ("Exception: {0}", e.ToString()); } } } }