<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
  <title></title>
</head>
<body text="#000000" bgcolor="#ffffff">
<span style="white-space: pre;">&gt; ... I get another error now -
regardless wether I<br>
&gt; do anything in the pi method or not, the application crashes after<br>
&gt; its exceution. I've added my IDL file. Do you know why this<br>
&gt; happens?<br>
<br>
</span>I've already lost the original email with your code snippets so
this is just speculation:<br>
<br>
If you are changing your interface definitions make sure that your Java
and C++ code have been compiled with the same version of IDL.<br>
<br>
If you are really getting the pi() method in your C++ object then you
probably have a reference problem. btw, you did not mention which Java
ORB you are using. JacORB, right? The ORB delivered with Sun's jre is
deficient in some features (or at least was in the past).<br>
<br>
<span style="white-space: pre;">&gt; Thank you btw for the book
recommendation :) Ordered it right now.<br>
</span><br>
An aside (sort of): the book will recommend against using attributes in
IDL. This is the best book I've run across for CORBA (nothing else is
close) partly because it does make suggestions and recommendations on
what to do or what to use in the standard and what to leave alone.<br>
<br>
hth<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Tom<br>
<br>
<blockquote
 cite="mid:21961F0B-E724-4C54-A47D-C1C03265AD32@student.hpi.uni-potsdam.de"
 type="cite">
  <pre wrap="">----
omniORB: Receive codeset service context and set TCS to (ISO-8859-1,UTF-16)
omniORB: Dispatching remote call 'pi' to: root&lt;0&gt; (active)
manager is not null
00491CC8
omniORB: Invoke 'setText' on remote: key&lt;.........t..................RootPO=
A....
..........&gt;
omniORB: sendChunk: to giop:tcp:192.168.0.102:58808 117 bytes
omniORB:
4749 4f50 0102 0100 6900 0000 0800 0000 GIOP....i.......
0300 0000 0000 0000 3100 0000 afab cb00 ........1.......
0000 0020 8974 e70d 0000 0001 0000 0000 ... .t..........
0000 0001 0000 0008 526f 6f74 504f 4100 ........RootPOA.
0000 0008 0000 0001 0000 0000 1420 3030 ............. 00
0800 0000 7365 7454 6578 7400 0000 0000 ....setText.....
0800 0000 6469 7370 6c61 7900 0500 0000 ....display.....
7465 7874 00                            text.
omniORB: inputMessage: from giop:tcp:192.168.0.102:58808 34 bytes
omniORB:
4749 4f50 0102 0001 0000 0016 0000 0008 GIOP............
0000 0000 0000 0001 4e45 4f00 0000 0002 ........NEO.....
0014                                    ..
omniORB: Return 'setText' on remote: key&lt;.........t..................RootPO=
A....
..........&gt;
omniORB: sendChunk: to giop:tcp:[::ffff:192.168.0.102]:58811 24 bytes
omniORB:
4749 4f50 0102 0101 0c00 0000 0600 0000 GIOP............
0000 0000 0000 0000                     ........
----

idl files:

----=20
#include "gui.idl"
module calculator
{
    interface Functions : Plugin
    {
                attribute GuiManager manager;
                void pi(in string id);
    };
};

module calculator
{
    interface GuiManager
    {
        exception NotSupportedForType
        {
            string reason;
        };

        exception ElementNotFoundException
        {
            string reason;
        };


        void initializeUserInterface(in string xml);
        void insertIntoUserInterface(in string xml, in string id);
        void updateUserInterface(in string xml);

        void setText(in string id, in string text) raises(NotSupportedForTy=
pe, ElementNotFoundException);
        string getText(in string id) raises(NotSupportedForType, ElementNot=
FoundException);
    };


    interface Plugin
    {
        void initializePlugin(in GuiManager manager);
    };
};

---- =

_______________________________________________
omniORB-list mailing list
<a class="moz-txt-link-abbreviated" href="mailto:omniORB-list@omniorb-support.com">omniORB-list@omniorb-support.com</a>
<a class="moz-txt-link-freetext" href="http://www.omniorb-support.com/mailman/listinfo/omniorb-list">http://www.omniorb-support.com/mailman/listinfo/omniorb-list</a>
  </pre>
</blockquote>
<br>
</body>
</html>