[omniORB] Error including other idls

Mark Duncan mduncan@pathfire.com
Tue, 27 Mar 2001 15:02:54 -0500


Hi,

We are trying to upgrade to omniORB3 while also porting to linux.  We seem
to be having issues with including other idls within and idl.  It appears
that the stub code that is generated includes definitions from both idls.  I
looked at the previous versions of the stub code and that is definitely not
the case.  Am I missing a flag somewhere that is causing this to happen?

Example code:

test1.idl:
module test1
{
	interface echo1
	{
		string echo1 ();
	};
};

test2.idl
#include "test1.idl"
module test2
{
	interface echo2
	{
		string echo2 ();
	};
};

Thanks,
Mark