IPC Using Connection Points and EventSinks | CodeGuru

IPC Using Connection Points and EventSinks

As a programmer I often find a need for an IPC(Inter-Process Communication) Mechanism for interacting between serveral processes. I like using COM and OLE since interfaces are simplified, and interaction between components becomes easy. Most IPC techniques requires marshalling, prameters descriptors, and enormous overhead on the design and testing processes. the ATL environment supply a […]

Written By
CodeGuru Staff
CodeGuru Staff
Jul 24, 2000
2 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

As a programmer I often find a need for an IPC(Inter-Process Communication) Mechanism for interacting between serveral processes.
I like using COM and OLE since interfaces are simplified, and interaction between components becomes easy.
Most IPC techniques requires marshalling, prameters descriptors, and enormous overhead on the design and testing processes.
the ATL environment supply a suitable framework for COM Events dispatching with default marshling.

To generate a simple OLE Server that expose an interface to be connected from multiple clients follow these steps:

OLE Server

  1. Start a new ATL project selecting the SERVER – Executable (EXE)
  2. A new skeleton was created. select “Insert/New ATL Object” from the ‘Insert’ Menu and specify the parameters for the interface you want to create , don’t forget to check the ‘Support Connection Points’ checkbox.
    it is recommended to check the marshlink checkbox and even to create a custom marshler if all you need is Local IPC.
  3. Select other options depended on your project and generate the interface code.
  4. Add methods/properties to your exposed interface.
  5. On the dispinterface(EventSink) add methods for the events to be passed to the calling process.
  6. Now as you can see in your interface generated header file your interface inheret from ConnectionPointContainerImpl<>
    to support connction points you must implement a proxy that uses the dispinterface discussed earlier.
    ATL Framework can do it for by simply right-clicking on the Interface implementation file and choosing implement connection
    point.
  7. A propery page will appear asking you to select header filename and interface to implement select the appropriate and click OK.
  8. Now from the exposed interface you can use the Fire_”EventName” to call the caller application with parameters.

The Client

  1. Start a new project (Win32,MFC,or whatever you wish)
  2. Import the IDL. you can use the #import directive to generate .tlh,.tli files .
  3. Now implement the dispinterface (The EventSink) using a class derived from the IDispatch + Invoke method and Query Interface.
  4. To ‘install’ the event sink you must use an instance of the exposed interface , use QueryInterface to get the IConnectionPointContainer from it, after an object of this type was retrieved use FindConnectionPoint to get the IConnectionPoint object and Advise method to connect the EventSink.

The Demo Project

The sample project was created on MSDEV 6sp4 tested on Win2k Proffesional Edition.
It consist of OLEServerSampler.exe that expose the IDoInterProcConnections interface and the _IDoInterProcConnectionsEvents sink.
and HelloSampler.exe a console application that implement an EventSink and connect to the OLEServerSampler Process.

Advertisement

Downloads

Download demo project – 224 Kb

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.