Interface description language: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
add XPIDL
m Removed category "Computer languages" (using HotCat)
Line 23: Line 23:
*[http://www.omg.org/cgi-bin/doc?formal/02-06-39 OMG Specification of OMG IDL]
*[http://www.omg.org/cgi-bin/doc?formal/02-06-39 OMG Specification of OMG IDL]


[[Category:Computer languages]]
[[Category:Specification languages]]
[[Category:Specification languages]]
[[Category:Data modeling languages]]
[[Category:Data modeling languages]]

Revision as of 19:57, 22 May 2008

An interface description language (or alternately, interface definition language), or IDL for short, is a specification language used to describe a software component's interface. IDLs describe an interface in a language-neutral way, enabling communication between software components that do not share a language – for example, between components written in C++ and components written in Java.

IDLs are commonly used in remote procedure call software. In these cases the machines at either end of the "link" may be using different operating systems and computer languages. IDLs offer a bridge between the two different systems.

Software systems based on IDLs include Sun's ONC RPC, The Open Group's Distributed Computing Environment, IBM's System Object Model, the Object Management Group's CORBA, Facebook's Thrift and WSDL for Web services.

Interface description languages

See also

External links