Questions tagged [idl]

IDL, short for Interface Description Language, is a language used to describe a software component's public interface in a programming-language-independent manner. (Not to be confused with the [idl-programming-language] tag, which is for a language used for scientific and medical image analysis)

As described on Wikipedia:

An interface description language or interface definition language (IDL), is a specification language used to describe a software component's application programming interface (API). IDLs describe an interface in a language-independent way, enabling communication between software components that do not share one language. 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's ONC RPC, The Open Group's Distributed Computing Environment, IBM's System Object Model, the Object Management Group's CORBA (which implements OMG IDL, an IDL based on DCE/RPC), Mozilla's XPCOM, Facebook's Thrift and WSDL for Web services.

Web specifications use a special form of IDL called WebIDL: https://heycam.github.io/webidl/

558 questions
-2
votes
1 answer

what is IDL,Interoperability,Portability?

Can anyone please clear me about following terms in simple way 1-IDL Interface Definition Language 2-Interoperability 3-Portability 4-API Thank you in advance
user2884098
  • 171
  • 1
  • 2
  • 5
-2
votes
1 answer

how to remove "const" for attribute "in" when CPP code is generated from IDL file in visual studio?

I am a very new guy to visual studio as well as IDL. I have an .idl file and visual studio is generating .h and .cpp files from the idl file. In the generated code , a "const" is addded for "in" attribute in IDL file. I want to get rid of this…
whitetiger
  • 412
  • 1
  • 4
  • 13
-3
votes
1 answer

Facing issues in compilation of idl files using tao_idl in rhel7 machine

i am facing issues in compilation of idl file. i have tried with different options with -Cw, -GI and -o all are giving the below errors tao_idl: "El_file.idl", line 201: error in lookup of symbols File::File1_operationFailed tao_idl: "El_file.idl",…
user3679622
  • 23
  • 1
  • 6
1 2 3
37
38