What is meant by IDL? I have googled it, and found out it stands for Interface Definition Language, which is used for interface definition for components. But, in practice, what is the purpose of IDL? Does Microsoft use it?
|
|
An interface definition language (IDL) is used to set up communications between clients and servers in remote procedure calls (RPC). There have been many variations of this such and Sun RPC, ONC RPC, DCE RPC and so on. Basically, you use IDL to specify the interface between client and server so that the RPC mechanism can create the code stubs required to call functions across the network. RPC needs to create stub functions for the client and a server, using the IDL information. It's very similar to a function prototype in C but the end result is slightly different, such as:
In this example, instead of calling In the server, there's a 'listener' process that will receive that information and pass it to the server. The server's stub receives the information, unpacks it and passes it to the real function. The real function then does what it needs to and returns to the server stub which can package up the return information (both return code and any The client stub then unpacks that and passes it back to The actual details may differ a little but that explanation should be good enough for a conceptual overview. The actual IDL may look like:
All that stuff at the top is basically networking information, the meat of it is inside the interface section where the prototypes are shown. This allows the IDL compiler to build the x stub and x server functions for compiling and linking with your client and server code to get RPC working. Microsoft does use IDL (I think they have a MIDL compiler) for COM stuff. I've also used third party products with MS operating systems, both DCE and ONC RPC. |
||||
|
There is also Interactive Data Language which I had a job using for scientific data analysis, but perhaps from the context it's clear to you that's not what this IDL stands for. |
|||
|
|
|
It's a language that has been used in the COM era to define interfaces in a (supposedly) language-neutral fashion. |
|||
|
|
|
It defines the interface to be used for communication with an exposed service in another application. If you use SOAP you'll know about WSDL. The WSDL is another form of an IDL. IDL usually refers to Microsoft COM or CORBA IDL. |
|||
|
|