Content deleted Content added
Derek~enwiki (talk | contribs) m fixed typo |
Derek~enwiki (talk | contribs) CORBA in *not* used almost exculsively with C++, and removed rant about C++ influences on IDL |
||
Line 4:
In a general sense CORBA "wraps" code written in another language into a bundle containing additional information on the capabilities of the code inside, and how to call it. The resulting wrapped objects can then be called from other programs (or CORBA objects) over the network. In this sense CORBA can be considered as a machine-readable documentation format, similar to a [[header file]] but with considerably more information.
CORBA uses an [[Interface Definition Language]], or ''IDL'', to specify the interfaces that objects will present to the world. CORBA
(CORBA IDL is only one example of an ''IDL'')
CORBA is most widely used with C++ or Java, but it is also usable with Python and Perl, and therefore allows easy interoperability between all those languages.
CORBA is more than just a language, platform neutral [[remote procedure call]] specification. It defines commonly needed services such as transactions and security.
|