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 [tag:idl-programming-language], a language used for scientific and and medical image analysis)

learn more… | top users | synonyms

0
votes
0answers
12 views

ActiveX/IDL – how to export member functions from “ATL Simple Object” in OCX control?

I have an ActiveX control in MSVC++10 which compiles into a .ocx. I have added another "ATL Simple Object" to this control, from which I want to export some functions. If this library is called ...
0
votes
2answers
20 views

Use regex in IDL to escape special character in directory name

I am trying to run a model on a cluster but IDL is throwing an error when using openw because the file locations name has [] in it (this is my conclusion after some testing). What I'd like to do is ...
2
votes
2answers
42 views

Difference between idl and odl

What is main difference in IDL and ODL. I have many projects, some of them has idl and some of them have odl. And where I should use them. What are tradeoffs.
0
votes
0answers
12 views

error MIDL2025: syntax error : expecting a type specification near “interface”

A very odd error I am facing while trying to import an old project in Visual Basic 2008. The project is written in C# and C. There is only one .idl file in the project. While trying to build the ...
0
votes
0answers
13 views

create .proto from .net decorative class

i have used protobuf-net and decorated my class i need help in converting this to .proto file so that i can complie it and use it in another project <ProtoContract()> _ Public Class ...
0
votes
1answer
18 views

Changes in Orbix Idl compiler flags from 3.3 to 6.3

I am quite new to the IDL compiler and am trying to port a decade old code from 3.3 to 6.3 (C++) and I see that the old compiler flags like -A -B -N are no longer valid in the new compiler. Can some ...
1
vote
1answer
32 views

count comments in IDL file using regex and Visual Studio's Find & Replace window

I'm trying to find an easy way to find the number of comment-lines in an IDL file and I don't want to install another extension just for this (also: I don't have Code Analysis, so no metrics). It ...
-1
votes
1answer
44 views

Failed to cast result of Marshal.GetActiveObject for COM interop wrapper

I'm struggling to work out how to access a COM interface provided by a C++ application and use it from a C# .NET application. I try to access my COM object (which is provided by a running process) ...
0
votes
1answer
49 views

error with array and object in IDL corba

I got a problem with array and object in IDL corba This is my code: interface ISinhVien { SinhVien[] DocFile(in String filename); void GhiFile(in SinhVien[] sv,in String filename); }; ...
0
votes
0answers
55 views

Is there an ORM that has code generators for C++ and Java [closed]

We want to access a database with many different data types to store using c++ and Java. Java since it works nicely e.g. with GlassFish and several other Web-Server related components, c++ because we ...
0
votes
1answer
33 views

Convert HEALPix to cube map

I'm looking for a way to convert fits file using the HEALPix projection to a cube map. I'm particularly interested in converting files from the Planck data release. My question in pictures: I have: ...
1
vote
1answer
51 views

Pass DII out-argument in Java CORBA

I have the following IDL interface: interface ItemA : Item { void actionA(in float a, out long b); }; In my Java implementation I'd like to invoke the operation actionA dynamically (using ...
0
votes
1answer
44 views

CORBA IDL Hashmap

Is there such a way to write CORBA IDL to generate stubs for a Hashmap for storing the following for example? public static final Map<Date, Integer> map = new HashMap<Date, Integer>();
0
votes
0answers
39 views

E3de / Envi Batch Generation of Building Polygons and DEM/DSM

E3de or ENVI (depending on what version etc), has the function to capture building polygons and generate a Digital Elevation Model (DEM) and a Digital Surface Model (DSM) from a classified LAS file. ...
0
votes
1answer
38 views

CORBA: Server as a Client

I have been looking around and can't find an example of a CORBA server implemented as a Client as well. I understand you can have a Client Connecting to a Server to Call methods but is there a way to ...
0
votes
1answer
62 views

Start Naming service with Eclipse for CORBA IDL in java

I am learning CORBA IDL and I am developing a Java Based Distributed System using Eclipse and ORB Studio. My questions is, Is there a way to start a naming service with Eclipse other than having to ...
0
votes
0answers
19 views

Warning in imported IDL file not suppressed with midl_pragma warning

I'm having trouble suppressing some (but not all) warnings in imported idl files using midl_pragma warning. I have a simple repro project, which is a blank Visual Studio 2012 C++ template. I modify ...
0
votes
0answers
43 views

Wrapper for IDL or tlb file

Is there a way to create VB Wrapper class for activeX control ? I have been successfully able to convert the interfaces to .tlb file but want to create a wrapper class for all coclass in the tlb or ...
0
votes
1answer
86 views

COM coclass implementing interface from another type library

I'm relatively new in COM, so appologies if this is a stupid question. I'm having a bunch of COM interfaces compiled into a type library A. This type library is a resource in one of the DLLs (a.dll) ...
0
votes
0answers
40 views

ctags - Add a New Language IDL

I am trying to add support for IDL in ctags. I have created idl.ctags file with the following lines. --langdef=IDL --langmap=IDL:.pro --regex-IDL=/^pro[ \t]+([a-zA-Z0-9_:]+)/\1/p,procedure/i ...
0
votes
0answers
123 views

what is daemon idle?

i am creating application after a long time when i invoke the camera the application was crashed. the following is the popped error message: Free pages: 1087 Active pages: 7747 Inactive ...
0
votes
3answers
91 views

The exclusive use of VARIANT in a COM interface

I've inherited a project that includes a COM DLL. I'm sort of new to COM but something doesn't seem right. The interface defined in the IDL only uses the VARIANT type for all properties and method ...
0
votes
2answers
39 views

Considerations when adding/removing COM methods and properties

I've recently inherited a project that creates and implements a COM coclass/interface in a DLL. This COM DLL is utilized by an application which applies a GUI to the COM class's interface. This is the ...
1
vote
1answer
93 views

OpenDDS IDL compiler compiler issue

and i am a little bit stuck tryng to compilea simple IDL file. root@ricardo:/home/ricardo/Desktop/librerias/dds/DDS/bin# ldd opendds_idl linux-gate.so.1 => (0xb771e000) ...
1
vote
1answer
28 views

Can I use const modifiers in IDL function definitions?

Can I use const modifiers in IDL function definitions that get parsed by MIDL? e.g. HRESULT TestFunctionCall( [in,string] const char *szParameter); Or will that result in breakages ...
0
votes
1answer
48 views

does CORBA support ASCII data exchange?

I know that CORBA exchanges data using IDL, which supports binary format. Could someone please explain if it is possible to exchange data in ASCII ? THinking you in advance for reply
2
votes
1answer
257 views

WebKit JS bindings: step by step how to

I have to admit I'm new to WebKit so asking the right question is not that easy. What I have is the WebKit from WebKit.org. It updates, builds, I can debug - I got it working on Windows. What I'm ...
0
votes
0answers
96 views

using .net interface in idl property

I have an interface defined as such in C#... [Guid("CCECB9F6-FCE6-4AC6-8163-39BC22314EE5")], ComVisible(true)] public interface ITestInterface { string TestProp { get; set; } } ...
0
votes
1answer
42 views

Implementation of equals() and hascode while converting C++ *.idl structure type to generated java file

I am using structure data type from C++ *.idl file and converting it to generated java class. It's generating java classed but it is not implementing equal to and hash method .. so i am not able to ...
0
votes
0answers
94 views

CORBA code explanation [closed]

I have the following code, which is mapped with IDL. I wrote it personally. I know how to create CORBA client-server system, the sequence of the functions needed to be used. I've also read the ...
0
votes
0answers
53 views

How does html5test.com actually test browser compatibilty?

Does html5test.com detect the callbacks from webkit code that sends information up to the JavaScript page and checks the whether interface through idl files exists or not?
0
votes
0answers
47 views

Marshalling an unsigned char * from a COM interface

I have a COM interface defined in the file IPlan.idl that defines a property for an unsigned char* buffer. [ object, uuid(...), dual, helpstring("..."), pointer_default(unique) ] ...
1
vote
1answer
64 views

IDL's INT_TABULATE - SciPy equivalent?

I am working on moving some code from IDL into python. One IDL call is to INT_TABULATE which performs integration on a fixed range. The INT_TABULATED function integrates a tabulated set of data { ...
0
votes
1answer
101 views

Where's d2d1.h's source file?

The first few lines of d2d1.h in Windows SDK's that contain them (e.g. the one marked as v7.1) are as follows: //--------------------------------------------------------------------------- // ...
0
votes
1answer
114 views

Error registering COM server when interface derives from IXMLHttpRequest

We've created our own implementation of IXMLHttpRequest in a COM server (.exe) like so: interface IMyXMLHttpRequest : IXMLHttpRequest { ... }; coclass MyXMLHttpRequest { [default] interface ...
0
votes
1answer
84 views

how do I overload a function in IDL based on array parameter item type?

suppose I had this function defined in IDL like this: [propget, id(6), helpstring("property MyArray")] HRESULT MyArray([out, retval] SAFEARRAY(myEnum)* pVal); and I wanted to create an overload for ...
0
votes
1answer
122 views

Using an enum from a type library in VBScript

I'm implementing a COM interface for an existing application written in C++. The COM interface is used for automating the application from VBScript. One of the methods I want to call via th COM ...
5
votes
1answer
170 views

Why Mozilla has JavaScript documentation written with IDL

Reading documentation about fileReader, and find out that they write methods using void operator, like this: void readAsArrayBuffer ( in Blob blob ); just trying understand why they do ...
1
vote
1answer
237 views

idl2java does not work with 64bit JVM? Error loading jre\bin\server\jvm.dll

vbroker52\bin\idl2java.exe -verbose -VBJdebug -VBJjavavm D:\tools\java\jdk1.6.0_37_32\jre\bin\java.exe JVM: Loaded JVM dll D:\tools\java\jdk1.6.0_37_32\jre\bin\client\jvm.dll ...
0
votes
2answers
250 views

Corba remote access

I have a Corba server runnning in a system, which I want to access from another machine on the same LAN. I tried giving the server ip of the server machine to access (code attached); however I get the ...
3
votes
1answer
208 views

Convert TLB to IDL

Does anyone know of a commandline-tool that generates an idl file from a type library (.tlb)? The reason for doing this is to get rid of underscores in enum-values generated from regasm. The problem ...
1
vote
1answer
443 views

COM - #include generated header vs #import generated tlb

I have many projects of which generate COM DLL's, these projects output the following: projectname_i.h projectname_i.c projectname_p.c projectname_i.tlb Then where another project consumes this DLL ...
2
votes
1answer
106 views

How do I return a string value from C++ to javascript (windows/Visual studio 2008)?

I have the following IDL which works fine for passing a string value from JS to C++. The JS code passes a string value to the c++/COM object. [id(1), helpstring("method DoSomething")] HRESULT ...
1
vote
1answer
152 views

Extracting frames with ffmpeg - why are they three dimensions?

I have been using ffmpeg as an extremely useful tool in video processing for my research. One problem I have run into: when extracting frames from a video to a Tiff format, it saves each Tiff with ...
0
votes
1answer
82 views

wrong name error when runing HelloServer in CORBA/JAVA tutorial [duplicate]

Possible Duplicate: NoClassDefFoundError: wrong name I've gone through all of the steps from the corba/java tutorial (here is the link : ...
4
votes
1answer
178 views

Implementing property must have matching 'ReadOnly' or 'WriteOnly' specifiers

I have an interface defined in an idl file and trying to convert a vb6 project to vb.net. The conversion created the interop from the tlb of this idl and in vs2010 it complains about the property not ...
0
votes
1answer
78 views

Create C++ ATL COM nested namespaces like System namespace in .NET

I have several ATL COM services and would like each of them to have their own namespace, but be under a single base namespace, just like the System namespace in .NET. For example if a C# project were ...
0
votes
0answers
73 views

C++ newbie trying to compile NullScript - MIDL2337 error [closed]

this is probably simple for an experienced C++ developer, but, alas, I know only C#. I am trying to compile NullScript and getting this error: error MIDL2337: unsatisfied forward declaration : ...
0
votes
1answer
71 views

Generate proxy classes from wsdl in IDL

I would like to generate proxy classes/code from a WSDL for IDL. So that I may communicate with a SOAP service. Anyone know any tutorials or have any clue on how it can be done?
2
votes
2answers
97 views

Accessing variables and arguments in IDL + Java

I am investigating distributed systems right now, so... I have to learn that IDL thingy. :D I have this requirement: Define in IDL - an account as an struct - accounts as a sequence of account’s - ...

1 2 3 4 5