[rtt2] connection creation through CORBA

The policy I've set up for connecting through CORBA was to always use a direct
connection for two ports that are present in the same process (i.e. not use
corba at all for those).

Quickly looking over the code, I have the impression that it is not true
anymore if OOB is requested: in that case, marshalling/demarshalling of data
flow is *always* set up regardless of the location of the ports.

Peter: is that true or did I overlook something ?

[rtt2] connection creation through CORBA

On Wed, Nov 4, 2009 at 15:31, Sylvain Joyeux <sylvain [dot] joyeux [..] ...> wrote:

> The policy I've set up for connecting through CORBA was to always use a
> direct
> connection for two ports that are present in the same process (i.e. not use
> corba at all for those).

> Quickly looking over the code, I have the impression that it is not true
> anymore if OOB is requested: in that case, marshalling/demarshalling of
> data
> flow is *always* set up regardless of the location of the ports.
>
> Peter: is that true or did I overlook something ?
>

Yes its true because you specifically requested a transport, so this is
applied, even if the components are in the same process. If you don't want
this, leave the transport id equal to zero.

Did you have another usage pattern in mind ?

Peter