Reputation: 8529
What is the difference between COM and DCOM ?
Upvotes: 8
Views: 6850
Reputation: 82
COM stands for Component Object Model.
DCOM stands for Distributed Component Object Model.
COM is set of component tools which are executed client side.
DCOM is a Distributed component object model runs at the given server.
COM requires installation on the machine from where it is being used.
DCOM requires installation somewhere on the same network.
Upvotes: 0
Reputation: 1781
DCOM=Distributed Component Object Model, you might call it COM via RPC. DCOM – Wikipedia
Upvotes: 2
Reputation: 490008
DCOM stands for "Distributed COM". That means the client and server can be on different machines communicating across the network, instead of both being on the same machine as in conventional COM.
Upvotes: 11