Tagged Questions

IDL, short for Interface Description Language, is a language used to describe a software component's public interface in a programming-language-independent manner.

learn more… | top users | synonyms

7
votes
4answers
167 views

Machine-readable (WebIDL) reference for JavaScript / HTML5?

I'm looking for a machine-readable reference of JavaScript classes (members, methods, parameters...), especially related to the HTML5 standard (canvas, storage, etc.). All I have found so far is the ...
6
votes
2answers
99 views

Generate Ocaml bindings stubs from C header file

I have a header file which declares a C API for some library and I would like to create an OCaml bindings for this lib. I found that camlidl can create stubs from an IDL file but as I understand there ...
6
votes
4answers
998 views

What is IDL?

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? ...
5
votes
1answer
240 views

How to properly hide methods and properties from intellisense

Would anyone know how to properly hide classes, methods and properties from intellisense while preserving the ability to call them; and so they do not appear in interop assemblies that are generated ...
5
votes
1answer
183 views

Why do IDL defaultvalue values look rounded?

I have a COM object with a function with an optional last argument. The IDL is a bit like this: interface ICWhatever: IDispatch { [id(96)] HRESULT SomeFunction([in,defaultvalue(50.6)]float ...
3
votes
2answers
128 views

Handeling NULL pointer out argument in C# COM

I am working with a COM plugin interface that has the following function definition: HRESULT foo ( [out, ref] VARIANT* a, [out, ref] VARIANT* b ); When using tlbimp (tlbimp2.exe from codeplex) the ...
3
votes
0answers
416 views

Creating an IDL file from a DLL [closed]

I'm working on a VB6 graphical interface that make use of a DLL generated from a C code that makes use of __declspec(thread) variables. The problem is that because of a known limitation, it is not ...
3
votes
1answer
274 views

VS2008 C++ compiler keeps asking to build the project

I have a project that includes an idl file that generates a .c file that is included in another file of the same project. I build this project and all is fine, I then try to run the project and I am ...
3
votes
1answer
230 views

Include files in ridl

The Delphi project I'm working on requires me to create a very large type library in order to add COM support. The problem is with the type library/ridl editor in Delphi is that it becomes difficult ...
3
votes
1answer
799 views

What are oaidl.idl and ocidl.idl for?

A default ATL Simple Object has the following at the top of its IDL file: import "oaidl.idl"; import "ocidl.idl"; What are these files for, and how do I know when I need to import them? Is there ...
3
votes
5answers
634 views

How do I share a constant between C# and C++ code?

I'm writing two processes using C# and WCF for one and C++ and WWSAPI for the second. I want to be able to define the address being used for communication between the two in a single place and have ...
3
votes
1answer
505 views

How to let idlj compile idl files in ant

I've no idea how to compile my idl files with the sun-idl compiler (idlj) with the help of ant? Does anyone have an idea?
3
votes
3answers
239 views

Shared common definitions across C/C++ (unmanaged) and managed C# code

I have a set of struct definitions that are used by both C# managed components and unmanaged C/C++ components. Right now, the identical struct definitions exist separately in C/C++ and C# code - ...
3
votes
2answers
3k views

Convert Interface IDL file to C#

I have an interface defined in an IDL file that I would like to use in C#. Is there a way to convert the IDL to something usable in C#?
2
votes
1answer
90 views

Java IDL : servertool does not register and hangs

I am running CORBA Persistent Object implementation in Java IDL as in Java IDL: The "Hello World" Example I followed exact procedure in above article I used servertool for registering Persistent ...
2
votes
1answer
179 views

_Problem with generating PASCAL bindings file from PSDK IDL file

I was trying to generate type library from one of PSDK shipped IDL files, but whilst midl session completes successfully (ERRORLEVEL 0) no .tlb file was generated. Currently i do not have any idea ...
2
votes
3answers
148 views

how to implement an idl-to-java compiler

I need to implement an idl-to-java compiler. In fact, it's not idl-to-java. Interface definition language is extended. So I need to implement a compiler which can generates java source file. I know ...
2
votes
2answers
93 views

Registering a COM object with only an idl file

I'm new to COM programing, so bear with me. I have a third party idl file which, when compiled, generates a header and an _i.c file. All three of these files are part of a Visual Studio 2010 ...
2
votes
1answer
202 views

Help needed with “The type library importer could not convert the signature for the member” warning in a trivial setup

Observe this most trivial IDL file: import "unknwn.idl"; typedef struct _MyStruct { DWORD len; [size_is(len)] BYTE *buffer; } MyStruct; [ object, ...
2
votes
1answer
118 views

Problem creating COM-library only containing enum's

I'm am doing a COM-interop project. Substituting some VB and C++ ATL COM projects with C# and .NET Interop. When i define enumerations in .NET and they are made ComVisible, they get exposed as ...
2
votes
1answer
162 views

How do I convert a .tlb file to headers and implementation files?

I'm trying to convert mscorlib.tlb. It normally used in C++ like this: #import "mscorlib.tlb" raw_interfaces_only \ high_property_prefixes("_get","_put","_putref") \ ...
2
votes
1answer
135 views

Get IDL code from TypeLibrary programmatically

I am writing code to perform the following steps; Register a .net .dll and generate a .tlb using regasm.exe Register a .net .dll and generate a .tlb using regasm.exe Generate the IDL code from the ...
2
votes
3answers
417 views

VB6 - How to pass Strings to a DLL written in C through a .tlb File

I'm working on a graphical interface written in VB6, where I have to call function contained in a certain DLL written in C. Because of a known limitation I had to implement a trick that allows me to ...
2
votes
3answers
119 views

Why do we have to create unique uuid for every interface in a idl?

Why do we have to create unique uuid for each interface in a idl ? For example in this interface there's a unique uuid for every interface in TradingLib. import "oaidl.idl"; ...
2
votes
2answers
303 views

IDL to Type Library

Is there a way in Delphi 7 to generate a tlb from an idl? Or even from a class/ interface definition?
2
votes
1answer
376 views

Change IDL generated header file

I'm working on a legacy c++ COM project that I'm moving over to Visual Studio 2010. In the IDL file for this project, I have to reference an ODL file from another c++ project. My problem is that the ...
2
votes
1answer
183 views

Problem with QueryInterface of out-of-proc COM server on interface imported from TLB

I define my interfaces in an A.idl file, which I compile to A.tlb In a VS2005 ATL project "B" I use importlib(A.tlb) in B.idl and #import "A.tlb" in stdafx.h and implement an interface IA from A.tlb ...
2
votes
2answers
166 views

windows installer for COM component

I have a C++ activex control that I need to make an installer for. It needs to drop the dll and make some registry keys. I have about 6 .RGS files which I made for self-registration via regsvr32, ...
2
votes
1answer
834 views

How to get IDL from a .NET assembly (or how to to convert TLB to IDL) in a command line?

We have a .NET assembly (Aspose.Words actually) and we want clients to use it from COM clients without much hassle. So we ship a .TLB with the assembly so the client can use it from languages such ...
2
votes
1answer
465 views

multiple Thrift services on one transport

Just seeking confirmation here : apache Thrift protocol does not seem to support running multiple services on one transport endpoint ? ( a socket, file, whatever ) I cant seem to figure out how to do ...
2
votes
1answer
2k views

Differences between [in, out] and [out, retval] in COM IDL definitions

In some of the IDL I work with I have noticed that there are 2 conventions for marking return values in methods - [in, out] and [out, retval]. It appears that [in, out] is used when there are ...
2
votes
1answer
889 views

How to pass bool from c# through c++ com interface in idl

I know I'm missing something simple, I have next to no experience with these com things. I would like to do this within an interface in an idl [id(5), helpstring("Returns true if the object is in a ...
2
votes
2answers
170 views

Why is it necessary to add new events to the *end* of an IDL interface?

I have found that when I add new events to an existing COM/IDL interface, I sometimes run into strange issues unless they are added to the end of the interface. For example, say I have the following ...
2
votes
4answers
295 views

Changing a CORBA interface without recompiling

I'd like to add a method to my existing server's CORBA interface. Will that require recompiling all clients? I'm using TAO.
1
vote
3answers
49 views

Must a CORBA application be implemented in the same language as the ORB?

I am aware that CORBA allows for multiple objects to be implemented in different programming languages and even run on different computing nodes. However, does this then require two different ORBs ...
1
vote
1answer
20 views

Corba - Unique user ID

Writing a simple multi client <-> server system in Corba. I am stuck on unique identification of the client. Is there a mechanism in Corba, like some POA policy that would allow a unique user id ...
1
vote
1answer
60 views

Send wstring and ptime over MS RPC

Iam using Microsoft RPC and i need to transfer my custom structure that have fields of type std::wstring and boost::ptime. In idl there is no such data types. What is best solution to send that ...
1
vote
1answer
57 views

Is there any way to fix the order of COM struct members when importing to C#?

I defined a struct in .idl file of C++ project, and the struct contained one VARIANT member. [uuid(C42A456C-C139-4339-A023-F9458C8A7386)] struct TEST_STRUCT { int Type; ...
1
vote
2answers
106 views

How to specify a default value for VARIANT_BOOL?

MS IDL has syntax for specifying a defaultvalue for parameters. I tried to specify a default value for a function that accepts a VARIANT_BOOL: [id(42)] HRESULT Foo([in, defaultvalue(VARIANT_TRUE)] ...
1
vote
2answers
87 views

Using the spawn command inside of IDL

I'm very new to IDL (trying to do a POC for someone using it) and I am trying to run an external command. The line of code I have added is this: spawn, 'C:\Program ...
1
vote
1answer
58 views

XPJS (Javascript XPCOM) Documentation?

Anyone know where is some usable XPJS, or XPCOM in JS, documentation for recent versions of Firefox/Gecko? And sample code/ tutorials would be great too. I need to write my own Component, but without ...
1
vote
1answer
86 views

COM - return an array of object interfaces

I want to return from IDL an array of interfaces. I try this: interface ISecurityPolicy : IDispatch{ [id(6)] HRESULT GetPolicyList([out, ref, retval] SAFEARRAY(IEntityPolicy*)* result); } ...
1
vote
3answers
83 views

Weird IDL error after migration to VS2010

Here's a very simple IDL interface that we've used successfully under VS2008 (arguments list shortened for brevity): interface Mailer { string findNode( [in] string requestedNode ); unsigned ...
1
vote
1answer
94 views

How to set IDL, so users can tell a parameter is “optional” in VBA?

In an IDL, I define a method: [id(1), helpstring("BLAH")] HRESULT SomeMethod([in, optional, defaultvalue(NULL)] IDispatch* para); When I use this method in VBA, the screen tip only shows: ...
1
vote
1answer
83 views

EclipseCORBA without compilation?

I am using EclipseCORBA, but mostly just for syntax highlighting. I'm wondering if there is a way to turn off the IDL compiler. The reason being that it doesn't bring up valid errors in my IDL files. ...
1
vote
1answer
65 views

Exsposing indexer like properties to COM

I have in existing COM-interface. I wan't to create a .net assembly that exposes a new interface as COM (with a new GUID), but the structure of the interface needs to be the same. How can i create a ...
1
vote
1answer
264 views

CORBA IDL in, out and inout

What exactly do in, out and inout - 'directional' operators mean in CORBA IDL function parameters?
1
vote
1answer
110 views

Is there a way with MIDL to turn off C-style headers generation?

I have a simple .IDL file (iface.idl) which describes an IUnknown based interface: import "unknwn.idl"; [ uuid(80DFDD28-F033-431e-B027-CDD2078FC78A) ] interface ISunPathCalc : IUnknown { ...
1
vote
1answer
65 views

Interface declaration location in IDL files

I'm working on a project that's upgrading a (very) old (and considerably large) program written extensively with COM / MFC to using WPF / managed .NET components, and part of it is trying to port over ...
1
vote
3answers
96 views

Unregister type library on Vista

I've made a mistake in IDL file by increasing library version. After that I revert the version. Since the time I can't work with library, because VB6 still write : "There is new version of library * ...

1 2 3