|
From: Teiniker E. <ego...@tu...> - 2003-11-27 17:38:59
|
Hey Leif!
The remote generator can handle IDL modules as shown in the following example:
module world {
module europe {
module austria {
struct Person {
long id;
string name;
};
typedef sequence<long> LongList;
typedef sequence<string> StringList;
typedef sequence<Person> PersonMap;
interface Console {
LongList foo1(in LongList l1, inout LongList l2, out LongList l3);
StringList foo2(in StringList s1, inout StringList s2, out StringList s3);
Person foo3(in Person p1, inout Person p2, out Person p3);
PersonMap foo4(in PersonMap p1, inout PersonMap p2, out PersonMap p3);
};
component Hello
{
provides Console console;
};
home HelloHome manages Hello
{
};
};
};
};
As you can see, the remote components are on their way...
:-) Egon
|