Click here to Skip to main content
15,914,111 members
Home / Discussions / COM
   

COM

 
GeneralRe: Out-of-process COM server Pin
darkbyte19-Aug-04 6:38
darkbyte19-Aug-04 6:38 
GeneralRe: Out-of-process COM server Pin
Jörgen Sigvardsson19-Aug-04 14:09
Jörgen Sigvardsson19-Aug-04 14:09 
GeneralRe: Out-of-process COM server Pin
sergeyv200220-Aug-04 2:44
sergeyv200220-Aug-04 2:44 
GeneralRe: Out-of-process COM server Pin
Jörgen Sigvardsson20-Aug-04 2:45
Jörgen Sigvardsson20-Aug-04 2:45 
GeneralRe: Out-of-process COM server Pin
Milton Karimbekallil22-Aug-04 18:30
Milton Karimbekallil22-Aug-04 18:30 
GeneralDiff between COM and COM+ Pin
Ravi S.V.18-Aug-04 19:45
Ravi S.V.18-Aug-04 19:45 
GeneralRe: Diff between COM and COM+ Pin
Milton Karimbekallil22-Aug-04 20:36
Milton Karimbekallil22-Aug-04 20:36 
GeneralRe: Diff between COM and COM+ Pin
Anonymous27-Aug-04 12:35
Anonymous27-Aug-04 12:35 
Microsoft came out with COM, which was nothing but a specification. Components built in any language according to this specification can be used with a client in any other language. So the programmer does not have worry about creating a single executable, since the component is identified by means of GUID (Global Unique Identifier), a 128-bit number that is stored in the system registry, along with other relevant information, to uniquely identify the component

COM+

In order for an enterprise application to be able to use COM, it has to have certain capabilities like:


Authentication
Object pooling
Transaction management
Support distributed architecture

Microsoft came out with DCOM (Distributed COM) and MTS (Microsoft Transaction Server) so that the developers don't have to add these capabilities to their components. Using the above two technologies, they can concentrate on writing the business logic instead of the background plumbing for their components

DCOM is an RPC (Remote Procedure Call) protocol used for communication between distributed components. Here the client makes requests to a proxy class on the local machine, which then delegates the call invisibly to a remote stub class installed on a remote machine

MTS is integrated with Microsoft's Windows 2000 OS under the new name COM+. But COM+ isn't just MTS; it also includes a host of other services. MSMQ (Microsoft Message Queue Server), which was released around the same time as MTS, is also integrated with Windows 2000 under COM+. MSMQ allows for asynchronous communication between clients and servers, which absorbs the impact of server inaccessibility. Event Service was added so that server classes can asynchronously communicate event occurences to multiple clients. The Load Balancing Service automatically instantiates requested objects on the machine that has the most available resources in the server farm.

i think you get bored of this but the theoritical facts are these.
All the Best!
GeneralRe: Diff between COM and COM+ Pin
satish chandra G27-Aug-04 12:35
susssatish chandra G27-Aug-04 12:35 
GeneralLost access to COM server from IIS JScript Pin
darkbyte18-Aug-04 7:17
darkbyte18-Aug-04 7:17 
GeneralRe: Lost access to COM server from IIS JScript Pin
Milton Karimbekallil22-Aug-04 20:16
Milton Karimbekallil22-Aug-04 20:16 
GeneralRe: Lost access to COM server from IIS JScript Pin
darkbyte23-Aug-04 7:28
darkbyte23-Aug-04 7:28 
GeneralRe: Lost access to COM server from IIS JScript Pin
Milton Karimbekallil23-Aug-04 21:19
Milton Karimbekallil23-Aug-04 21:19 
GeneralRe: Lost access to COM server from IIS JScript Pin
darkbyte27-Aug-04 13:30
darkbyte27-Aug-04 13:30 
GeneralRe: Lost access to COM server from IIS JScript Pin
Milton Karimbekallil29-Aug-04 19:49
Milton Karimbekallil29-Aug-04 19:49 
GeneralSemi-Newbie on IDL file Pin
RChin18-Aug-04 0:54
RChin18-Aug-04 0:54 
GeneralRe: Semi-Newbie on IDL file Pin
RChin18-Aug-04 2:10
RChin18-Aug-04 2:10 
GeneralRe: Semi-Newbie on IDL file Pin
BadJerry19-Aug-04 1:07
BadJerry19-Aug-04 1:07 
GeneralRe: Semi-Newbie on IDL file Pin
RChin19-Aug-04 1:27
RChin19-Aug-04 1:27 
Generalcom programming Pin
LacrimaMosa18-Aug-04 0:33
LacrimaMosa18-Aug-04 0:33 
GeneralRe: com programming Pin
BadJerry18-Aug-04 8:02
BadJerry18-Aug-04 8:02 
GeneralRe: com programming Pin
LacrimaMosa19-Aug-04 2:29
LacrimaMosa19-Aug-04 2:29 
GeneralRe: com programming Pin
LacrimaMosa20-Aug-04 0:23
LacrimaMosa20-Aug-04 0:23 
GeneralRe: com programming Pin
BadJerry20-Aug-04 0:31
BadJerry20-Aug-04 0:31 
GeneralRe: com programming Pin
LacrimaMosa20-Aug-04 0:41
LacrimaMosa20-Aug-04 0:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.