Describe DCOM infrastructure - C++

Describe DCOM infrastructure.

Distributed Component Object Model allows applications to be distributed in a convenient way. It allows safe and reliable communication between DOM components. DCOM allows objects to be created on other machines. DCOM Class Store is used as a fixed configuration file that allow clients to indicate the remote server name when an object is created or alternatively an explicit parameter can be passed to CoCreateInstanceEx, CoGetInstanceFromFile, CoGetInstanceFromStorage, or CoGetClassObject.

Describe DCOM infrastructure.

Distributed COM :
It is an extension of COM. It allows network-based component interaction. While COM processes can run on the same machine but in different address spaces, the DCOM extension allows processes to be spread across a network. With DCOM, components operating on a variety of platforms can interact, as long as DCOM is available within the environment.
What is COM+?
What is COM+? - COM+ integrates MTS services and message queuing into COM....
Explain the problem with COM - C++
Explain the problem with COM - From the security point of view, COM and ActiveX controls are not safe.......
What are dual interfaces?
What are dual interfaces? - A dual interface allows its methods to be accessed as dispinterface methods or as vtable methods...
Post your comment