Content deleted Content added
Derek~enwiki (talk | contribs) m Forgot tcl in the languages list |
Derek~enwiki (talk | contribs) Forgot to list C in language list! |
||
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 then specifies a "mapping" from IDL to a specific implementation language like [[c_plus_plus|C++]] or [[Java_programming_language|Java]]. This mapping precisely describes how the CORBA data types are to be used in both client and server implementations. Standard mappings exist for [[C_language|C]], C++, Java and [[Python_programming_language|Python]]. There are also non-standard mappings for [[Perl]] and [[Tcl]] implemented by ORBs written for those languages.
(CORBA IDL is only one example of an ''IDL'')
CORBA is most widely used with C++ or Java, but it is also usable with C, Python, Perl and Tcl, 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.
|