Windows error 0x80110824, -2146367452

Detailed Error Information

COMADMIN_E_PARTITIONS_DISABLED[1]

MessageCOM+ partitions are currently disabled.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode17 (0x011)
NameFACILITY_COMPLUS[2][1]
DescriptionThe source of the error code is COM+.[2][1]
Error Code2084 (0x0824)

Questions

11votes
2answers

COM+ activation on a remote server with partitions in C#

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
c#
remote-server
com+
activation
moniker

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0