Article · Wikipedia archive · Last revised May 19, 2026

Interface description language

An interface description language or interface definition language (IDL) is a generic term for a language that lets a program or object written in one language communicate with another program written in an unknown language. IDLs are usually used to describe data types and interfaces in a language-independent way, for example, between those written in C++ and those written in Java.

Last revised
May 19, 2026
Read time
≈ 3 min
Length
582 w
Citations
2
Source
Representation of different software components for performing a hypothetical holiday reservation in UML source ↗

An interface description language or interface definition language (IDL) is a generic term for a language that lets a program or object written in one language communicate with another program written in an unknown language. IDLs are usually used to describe data types and interfaces in a language-independent way, for example, between those written in C++ and those 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 Microsystems' Sun RPC, The Open Group's Distributed Computing Environment, the IBM System Object Model, the Object Management Group's Common Object Request Broker Architecture (CORBA) (which implements OMG IDL, an IDL based on DCE/RPC) and Data Distribution Service, Mozilla's XPCOM, Microsoft RPC (which evolved into Component Object Model (COM) and Distributed Component Object Model (DCOM)), Facebook's Apache Thrift and Web Services Description Language (WSDL) for Web services.

Examples

See also

See also

References

References

External links