I want to access partitioned COM+ applications on a remote server. I have tried this: using COMAdmin using System.Runtime.InteropServices; _serverName = myRemoteServer; _partionName = myPartionName; _message = myMessage; ICOMAdminCatalog2 catalog = new COMAdminCatalog(); catalog.Connect(_serverName); string moniker = string.Empty; string MsgInClassId = "E3BD1489-30DD-4380-856A-12B959502BFD"; //we are using partitions if (!string.IsNullOrEmpty(_partitionName)) { COMAdminCatalogCollection [...] read more