Hello,<br>I found a solution, just did not have time to send it to the mailing list.<br>The problem was caused by the flag tcAliasExpand. <br>But not just simple that.<br>I had an omniORB.cfg file, had all environment variable set up correctly. In the cfg file I had the tcAliasExpand flag set to 0, as it was ment.<br>
In the code I had a recommended code by the guide:<br>const char* options[][2] = {{&quot;maxGIOPVersion&quot;,&quot;1.2&quot;}, {&quot;lcdMode&quot;,&quot;1&quot;},{&quot;clientCallTimeOutPeriod&quot;, &quot;0&quot;}, {&quot;traceLevel&quot;, &quot;40&quot;},{&quot;tcAliasExpand&quot;,&quot;0&quot;}, {0,0} };<br>
orb = CORBA::ORB_init(argc, argv,&quot;omniORB4&quot;, options);<br>Despite in the cfg file, and in the options part set value, in the logs I could see that the tcAliasExpand is 1. <br>The solution was to use<br>orb = CORBA::ORB_init(argc, argv);<br>
and this solved the tcAliasExpand problem, and the problem with alias interpretation also.<br><br>I am struggling with another problem, if I do not find a solution, I will post it to the mailing list.<br>Best Regards<br>PK<br>
<br><div class="gmail_quote">2010/6/1 Duncan Grisby <span dir="ltr">&lt;<a href="mailto:duncan@grisby.org">duncan@grisby.org</a>&gt;</span><br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
On Tue, 2010-05-18 at 12:00 +0200, PK wrote:<br>
<br>
[...]<br>
<div class="im">&gt; How can I insert the correct alias information to the request? The<br>
&gt; server side cannot interpret the request I am sending. Am I<br>
&gt; misunderstanding something?<br>
<br>
</div>Please come up with an absolutely minimal example that shows the problem<br>
and post the complete code for it. It&#39;s impossible to diagnose anything<br>
with just small fragments of your code.<br>
<br>
Duncan.<br>
<font color="#888888"><br>
--<br>
 -- Duncan Grisby         --<br>
  -- <a href="mailto:duncan@grisby.org">duncan@grisby.org</a>     --<br>
   -- <a href="http://www.grisby.org" target="_blank">http://www.grisby.org</a> --<br>
<br>
<br>
</font></blockquote></div><br>