Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between COM and DCOM?

Tags:

visual-c++

com

What is the difference between COM and DCOM ?

like image 623
Ashish Avatar asked Jun 16 '10 14:06

Ashish


2 Answers

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.

like image 162
Jerry Coffin Avatar answered Oct 15 '22 16:10

Jerry Coffin


DCOM=Distributed Component Object Model, you might call it COM via RPC. DCOM – Wikipedia

like image 40
Loxley Avatar answered Oct 15 '22 16:10

Loxley