Chau Chee Yang
Chau Chee Yang

Reputation: 19600

Is there any alternate way to supply similar functions as COM does?

Window's COM allow us to wrap our application function for out-of-process invocation. If the COM interfaces are well defined and design, it is certainly great to consume the services via scripts and any programming platform that support COM/Automation/Active-X.

I am just wondering if there exist any alternate methods to design of what COM does? Or something close or similar methodology?

I am using Delphi in Win32 platform.

Upvotes: 0

Views: 150

Answers (3)

Warren  P
Warren P

Reputation: 68862

If you want a TCP/IP (over the internet or over a LAN) interface for your objects, consider SOAP, and REST.

If you want to write plugins for your delphi app and not use COM/OLE-Automation, consider RemObjects SDK.

Upvotes: 0

Tim Sullivan
Tim Sullivan

Reputation: 16888

I'm not entirely sure, but it seems that you're talking about an alternate to COM for creating plug-ins for your software?

If so, there are myriad options:

You can also roll your own. I wrote an article many years ago that provides the fundamentals (though the linked source is long since gone to the great bit bucket in the sky).

Upvotes: 1

Goz
Goz

Reputation: 62323

Corba
or
IBM's SOM

I'm sure there are others as well but those are the 2 others i can think of off the top of my head ...

Upvotes: 0

Related Questions