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)
0
votes
1answer
84 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
204 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
85 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
82 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
77 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
98 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
- ...
4
votes
2answers
112 views
Bindings and introspection for OCaml library
I want to write an OCaml library which will be used by other programing languages like C or even python.
I not sure it's even feasible, and i guess i need to drop some type safety and add runtime ...
1
vote
0answers
29 views
“Empty” inherited COM interface is not marshalled properly
I've got an in-proc COM server (dll, built in MSVC10), which is used in a C# client. One of the interfaces is defined like this:
[
object,
uuid(some guid),
dual,
nonextensible,
...
1
vote
1answer
131 views
Conversion between C structs (C++ POD) and google protobufs?
I have code that currently passes around a lot of (sometimes nested) C (or C++ Plain Old Data) structs and arrays.
I would like to convert these to/from google protobufs. I could manually write ...
0
votes
0answers
43 views
Any Java Renditions of Darwin/Regis
Many many years ago I used the Architectural Description Language Darwin and the accompanying implementation: the Regis distributed programming environment.
Though it was a research project I was ...
1
vote
1answer
198 views
WinRT IDL overload reflection through IMetaDataImport
I'm not sure whether this is new in WinRT or existed before; in IDL, you can write declarations like this:
[uuid(E9C62AEE-1494-4A21-BB7E-8589FC751D9D)]
[version(0x06020000)]
...
1
vote
2answers
217 views
IDL static interfaces
For WinRT, IDL now supports constructs such as this:
[marshaling_behavior(agile)]
[threading(both)]
[activatable(0x06020000)]
[version(0x06020000)]
...
1
vote
1answer
175 views
IMetaDataImport and WinRT runtimeclass interfaces
In the MS IDL version that comes with Visual Studio 2012, support for WinRT added such constructs:
[activatable(Windows.Networking.Sockets.IControlChannelTriggerFactory,
...
4
votes
3answers
903 views
How to associate constants with an interface in C#?
Some languages let you associate a constant with an interface:
A Java example
A PhP example
The W3C abstract interfaces do the same, for example:
// Introduced in DOM Level 2:
interface CSSValue ...
1
vote
1answer
918 views
Solve Singular Value Decomposition (SVD) in Python
I amtrying to translate an IDL program to Python. I have to solve the outcome from SVD which I achieve in the following way
from scipy.linalg import svd
A = [[1,2,3],[4,5,6]]
b = [4,4,5]
u,w,v = ...
0
votes
1answer
881 views
Creating WinRT component with static methods in C++ / WRL
I want to create a WinRT component using C++ and WRL (Windows Runtime C++ Template Library) to be consumable in a managed code via C# static method call.
int sum = Math.FastAdd(5,6);
The ...
1
vote
1answer
131 views
Get real name of method defined in IDL in C#
We have project with IDL and there is defined interface with Enumeration. It has property with ID = DISPID_NEWENUM (support for for-each etc.).
From this we generate interop dll. When I use ...
1
vote
1answer
136 views
Trouble Casting COM Object to a C#/.NET Class
I have a base class that is written in C# that implements an interface defined in an IDL library. I have a C++ class that manages the single instance of this class. I also have a C# project that needs ...
1
vote
1answer
117 views
Problems after upgrading IBM C++ compiler from xlc_R 10.0 to 11.1
Everything compiles fine, but during run time, it crashes without any coredumps, exceptions or no logs clues about what is happening. After inserting debug lines, I found that it was around this ...
0
votes
1answer
171 views
Including a C# Interface in a IDL Library
I have an interface define in C#, for example:
[ComVisible(true), Guid("E37EBA3C-FB2E-4D4A-8A90-F6FAA99E85C9")]
public interface TestClass
{
public void test_function();
}
I want to include ...
1
vote
0answers
46 views
python equivalent of idl's journal function?
I am trying to find the equivalent function of idl's journal in python (or ipython).
I know ipython has the %logstart function but that only record the input/output in ipython, so if I run my script ...
0
votes
0answers
100 views
Changing .dll properties generated using tlbimp.exe tool
I generated a .tlb file from an .idl file generated using MIDL compiler. Now, using tlbimp.exe, I generated .dll from the generated .idl and I am able to do it properly.
However, I am facing ...
2
votes
1answer
476 views
What does idl attribute mean in the WHATWG html5 standard document?
While reading over the WHATWG's HTML5 - A technical specification for Web developers I see many references such as:
Reflecting content attributes in IDL attributes
Some IDL attributes are ...
1
vote
2answers
68 views
Client.java:30: getThingToDo() in OtherPackage.TaskOperations cannot be applied to (short)
I extended my previous example: Segmentation fault (core dumped) on Server side in CORBA C++/Java application which I finally finished with help of Stack's user, @Brian Neal.
Im still a newbie in ...
0
votes
1answer
307 views
idlj-maven-plugin and package translation
I am trying to include a Corba .idl file in a Maven project with idlj-maven-plugin. The .idl file specifies a certain module, say
module Tester
{
interface Test {
void sayHello();
}
}
and I ...
2
votes
1answer
103 views
What differences are allowed between IDL of CORBA server and client?
What I think I know so far is that the CORBA specification as such doesn't allow any differences between the IDL the server program uses and the IDL the client program uses.
However, in practice, ...
0
votes
0answers
35 views
Interface description language parsers
[Constructor(in DOMString url, in optional DOMString protocol)]
interface WebSocket {
readonly attribute DOMString URL;
// ready state
const unsigned short CONNECTING = 0;
const unsigned ...
0
votes
0answers
77 views
Problems with IDL spec
I'm trying to get some RPC calls to work, but unfortunately I'm kind of stuck with the IDL spec of the interface I try to use. I've set up a minimalistic test project to show the problem, but couldn' ...
0
votes
0answers
34 views
Is there a kind of IDL for AMQP
for CORBA there exists an IDL, which compiles your interface description to code.
For SOAP you can use WSDL.
How are message described and compiled to code when I am using a messaging middleware like ...
0
votes
1answer
208 views
IDL to java (Suns idlj) how to compile generated files?
I have an .*idl interface:
interface Class1;
interface Class2
{
typedef sequence<Class1> vector;
Class2 create();
};
interface Class1
{
typedef sequence<Class2> vector;
...
2
votes
4answers
188 views
Does idjl (Sun IDL compiler) support forward declaration?
I have to use idlj for my school project but in my idl files I also need to use forward declaration. Does anybody know if idlj support forward declaration? I tried to do this, but it gives errors:
...
1
vote
3answers
251 views
How to represent IDL with union and switch in C++
We publish the IDL files to represent the interface and would have a similar structure with C++/C code so that we can use to map them when the interface is invoked. So some conversion (equivalent) ...
0
votes
1answer
286 views
define a structure in C++ IDL, then MarshalAs() appropriately in C#
I have a C++ COM server that fills a C# caller's structure with data.
The structure is defined in the C++ IDL, something like the following:
interface Icontrol : IDispatch{
[
uuid(...),
...
0
votes
1answer
174 views
Compile IDL file error
I'm using VS 2008 Pro.
I have 1 idl file which contains:
module views {
// Introduced in DOM Level 2:
interface [
ObjCCustomImplementation,
OmitConstructor
] AbstractView ...
0
votes
2answers
210 views
_ptr or _var - which one use as a class field and why?
I have a class:
class Impl1 : public POA_I1
{
private :
Impl2_var ob;
public :
Impl2_ptr get();
{
return ob;
}
void ...
1
vote
2answers
403 views
COM SafeArray of SafeArray
I have the following in my IDL which MIDL seems to like just fine. I am trying to create a method that returns an array of byte arrays (not a matrix). I am having a problem on the C++ side where ...
0
votes
1answer
112 views
How to deal with cyclic dependency in *.IDL files?
I have two *.IDL files, where I have to deal with cyclic dependency:
#ifndef __USER_IDL__
#define __USER_IDL__
#include "Group.idl"
interface User
{
typedef<sequence> Groups;
...
1
vote
2answers
273 views
IDL interface, C++, CORBA, I'm dealing with “conflicting return type specified for” and “invalid abstract return type for member function ‘virtual…”
For over 3 days I've been dealing with CORBA and C++ and my app interface written in IDL.
My app interface looks like this:
#ifndef __FORUM_INTERFACE_IDL__
#define __FORUM_INTERFACE_IDL__
#include ...
0
votes
1answer
200 views
How to represent SQL Server type numeric(38,0) as IDL type (COM type library)?
How to represent SQL Server type numeric(38,0) as IDL type (COM type library)?
Thanks a lot for the help!
P.S. For example, SQL Server type int is long type in IDL.
0
votes
1answer
461 views
Spatially Subsetting Images in batch mode using IDL and ENVI
I would like to spatially subset LANDSAT photos in ENVI using an IDL program. I have over 150 images that I would like to subset, so I'd like to run the program in batch mode (with no interaction). I ...
1
vote
1answer
154 views
Including a class.h file in a *.idl file gives errors
I have some simple Interface in Corba:
#ifndef __INTERFFACE_IDL__
#define __INTERFFACE_IDL__
import User.h;
interface Interfface { void fun(in User u); };
#endif
And i also have simple C++ ...
0
votes
0answers
189 views
Include an idl file in Qt to use an API (C++ project)
I would like to include an .idl file in my Qt C++ project, in order to use an API (precisely an API for a Blackmagic hardware device). Does anybody knows how to include that kind of file in Qt ...
0
votes
0answers
52 views
How do in find the specifc error in my idl file?
I use the xpidl tool to parse myinterface.idl
/home/deps/mozilla/tools/debug/x64/xpidl -m header -w -v -I/home/public -e public/ncIClusterMgm.h ./public/ncIClusterMgm.idl
** (process:14099): ...
1
vote
1answer
184 views
Python COM server with idl
I have to create a tlb file so I can access a Python COM server from .Net. I only want a single method (Process) that takes a string and returns a string. The idl file is below:
import "oaidl.idl";
...
0
votes
0answers
100 views
Does the interface count is limited in ATL project?
The enviroment is Visual Studio 2010, there is a ATL COM project, and some MFC application projects. Now the atl project and mfc application are well, but when I add one or more interfaces to the atl ...
6
votes
1answer
403 views
Generating java from IDL (avoiding default package)
I'm working with a LARGE legacy C++ code base with numerous IDL files that have all the types and constants declared outside of any module.
For C++, this results in code being generated to the global ...
1
vote
2answers
87 views
information regarding .idl files in cpp
I am working on webkit(webkit.org), an open source code browser.
While looking the webcore code i find there there are some .idl files and these idl looks different then normal cpp/c code.
I want to ...
0
votes
1answer
184 views
Parse IDL enums to Java Enums
I've got a bunch of IDL files filled with enums. I would like a way to parse the IDL files, extract out the enums and create native Java enums based on these (also ignoring any other declarations in ...
1
vote
1answer
190 views
How do I use IMultiLanguage2 in Delphi XE2?
I am in need of an idiot's guide for how to use the IMultiLanguage2 interface from Delphi XE2, with 32-bit VCL applications.
So far I have found MLANG.IDL in the RAD Studio include\windows\sdk\idl ...
1
vote
1answer
92 views
Corba communication between different languages
How is the CORBA IDL used to support communication between objects that have been implemented in different languages?


