devxlogo

Try to Implement COM Server Objects As In-Process If Possible

Try to Implement COM Server Objects As In-Process If Possible

COM objects can be implemented either in-process or local. The former is implemented as a DLL and runs in the same process space as the client. They become a part of the client program when loaded. On the other hand, local objects are implemented as executables and run in their own process space.

When they are created, the executable’s program is loaded and runs along with the client program. Internally each process is allocated its own stack. The in-process object is fast because it can access the common stack compared to the local objects, which have to go through marshalling/unmarshalling of data for data movement between two processes, and hence two stacks.

Thus, it is advisable to develop COM objects as in-process components because these two implementations can result in a large difference in performance.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist