Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CORBA/ RMI and (D) COM are any still relevant today?

Are CORBA (language agnostic) / RMI (Java) and (D) COM (MS) still relevant today, or is there a technology that has surpassed them?

Cheers, J

like image 773
JHarley1 Avatar asked Jan 12 '11 14:01

JHarley1


2 Answers

They're not so popular today as modern Java or .Net architectures typically do this type of thing using HTTP based web services.

However, many systems do use these architectures and they are more efficient than web service architectures as they normally use UDP based communication protocols. While these architectures are still in use today they are mostly relegated to legacy and niche market systems in practice.

In some cases RMI is used behind the scenes in java app servers. For example, a bean container may be moved to a separate server from a web app server. Java app servers make this fairly transparent - the bean container can reside on the same server through local calls or on a different server through RMI. With the right application architecture it's just a config item and the app server can do all the remoting behind the scenes.

DCOM gets used similarly with COM+ apps. However, COM+ is largely a legacy architecture on Windows. It was popular with VB6 but that is all but deprecated.

CORBA had a somewhat deserved reputation for complexity due to its design-by-committee roots. However, it pops up in a lot of unexpected places. For example, earlier versions of GNOME made use of a CORBA based component model called Bonobo but this has largely been replaced with D-BUS in current versions. Apart from legacy system infrastructure it has a few niche markets (mostly low latency applications) that benefit from its characteristics such as the UDP based transport mechanism.

like image 167
ConcernedOfTunbridgeWells Avatar answered Oct 05 '22 01:10

ConcernedOfTunbridgeWells


Java EE EJBs still use RMI and CORBA as their wire protocol.

Perhaps that's one reason why HTTP web services, be they based on RPC-XML, SOAP, or REST, are ascendant. Simple and open usually win.

like image 28
duffymo Avatar answered Oct 04 '22 23:10

duffymo