Hi,<br><br>Great, thanks. Maybe I&#39;m not going about solving my problem in the right way though. I have a C++ scenario which looks something like this:<br><br>class A {<br>&nbsp; int foo( data_t );<br>};<br><br>typedef struct data_s {<br>
&nbsp; int val;<br>&nbsp; bar_t *bar;<br>&nbsp; struct data_s *next;<br>} data_t;<br><br>typedef struct bar_s {<br>&nbsp; char *str;<br>} bar_t;<br><br>I need to make A accessible via CORBA. That is, another machine, where the data_t and bar_t structs reside, should be able to call a.foo(). The data_t and bar_t arguments need to be sent over the network. I&#39;m not sure how the bar pointer in data_t will be handled though -- do I need to get rid of it? I want to minimize the amount of object passing needed.<br>
<br>Note that this is a modification of an existing codebase. I want to integrate CORBA into this as little as possible, but if CORBA is going to send the arguments, it needs to know what they look like, right? Would an alternative be to &quot;serialize&quot; the data_t struct (not necessarily into a stream/string, but just something that CORBA handles well), send it over the network to an AProxy object, which would &quot;deserialize&quot; the data_t struct and call a.foo()?<br>
<br>Am I rambling like a madman? I hope not. Let me know if any of this makes any sense to you.<br><br>/David<br><br><br><div class="gmail_quote">On Fri, Apr 11, 2008 at 12:29 PM, Martin Trappel &lt;<a href="mailto:0xCDCDCDCD@gmx.at">0xCDCDCDCD@gmx.at</a>&gt; wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div><div></div><div class="Wj3C7c">mov . wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Hi,<br>
<br>
I&#39;ve googled a fair amount, and found nothing on the mailing list about this. How would I model a linked list in IDL? Could someone maybe point me to some good IDL documentation for omniORB, if there is any. I&#39;ve looked at the C++ Language Mapping, Version 1.2 from OMG, but I haven&#39;t found anything there either. What I want is something that&#39;s equivalent to, and preferably also maps to,<br>

<br>
typedef struct list_item_s {<br>
 &nbsp;int value;<br>
 &nbsp;struct list_item_s *next;<br>
} list_item_t;<br>
<br>
Any ideas? Am I missing something obvious? Any help is appreciated.<br>
<br>
/David<br>
<br>
</blockquote>
<br></div></div>
IDL only defines an Interface, so it may not make sense to define a linked list in IDL. Of course, if you really like to model a linked list on the interface level, you could write something like:<br>
<br>
module Example {<br>
 &nbsp;interface ListItem;<br>
<br>
 &nbsp;interface ListItem {<br>
 &nbsp; &nbsp;int GetValue();<br>
 &nbsp; &nbsp;ListItem Next();<br>
 &nbsp;};<br>
};<br>
<br>
br,<br><font color="#888888">
Martin<br>
</font></blockquote></div><br>