Re: IPv6 communication from ORBit to OmniORB
Jaromir Talir <[email protected]> Wed, 09 Aug 2006 10:29:07 +0200 (CEST)
| Newsgroups | gmane.comp.gnome.orbit.general |
|---|---|
| Message-ID | <[email protected]> |
> ------------ Původní zpráva ------------ > Od: Jules Colding <[email protected]> > Předmět: Re: IPv6 communication from ORBit to OmniORB > Datum: 08.8.2006 11:33:28 > ---------------------------------------- > On Tue, 2006-08-08 at 10:45 +0200, Jaromir Talir wrote: > > Hello, > > > > we have created working system with c++ OmniORB corba backend and > > small c ORBit2 client. Now we want to switch to IPv6 and it seems it > > is problem for ORBit. OmniORB client (omniorbpy) successfully connects > > to server but ORBit(pyorbit) fails. It even doesn't make attempt and > > throws CORBA.COMM_FAILURE. It probably cannot parse IPv6 addres from > > IOR or something like this. > > ORBIIOPIPv6 ? > I forgot to say that that I tried this way. # pyorbit orb = ORBit.CORBA.ORB_init("ORBIIOPIPv6=1") orb = ORBit.CORBA.ORB_init("-ORBIIOPIPv6=1") or simple: orb = ORBit.CORBA.ORB_init() and # ~/.orbitrc ORBIIOPIPv6=1 but always when I try send a message to corba object i throw exception. I made conclusion that this parameter is probably used only on server ORBit for object reference creation. On google I found an article (very old) where they say IPv6 is only working between ORBit client and ORBit server. http://www.linuxtoday.com/news_story.php3?ltsn=1999-10-10-001-10-NW-LF-0045 Jara