Tagged Questions
0
votes
1answer
199 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;
...
1
vote
2answers
267 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 ...
1
vote
1answer
152 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
1answer
259 views
midl : error MIDL9008
I am getting the following error in vs 2008:
midl : error MIDL9008 : internal compiler problem - See documentation for suggestions on how to find a workaround.
midl: Assertion failed: ( rc ...