tags:

views:

30

answers:

1

As far as I know there were problems with incompatible CORBA implementations in the past resulting from different interpretations of the specification. How is the situation today? Can I expect two different implementations to interact without problems?

+1  A: 

I worked with corba stuff for the last 8 years. Its a standard (ASAM ODS OO API) and uses Corba to implement the API between server and clients.

We din't find incompatibilities till a long time. (java, jorb, mico, omniorb / C++ / Java)

When we started there were mainly problems with the nameservices (different port, ...) but we didn't figure out any real incompatibility till then.

I think the difference between the different orb implementations may be the features that are represented by the implementation.

What is still there is that speed of the different implementations differ.

Totonga