[omniORB] Im new on Linux

Sean Parker supinlick at yahoo.com
Mon Jun 27 15:36:22 BST 2005


Hello -

  I'm familiar with neither fedora nor kate - I'd like to
help if you can enlighten me...

thanks and God Bless -
   sean

--- Tshivhase Avhashoni <shoni at tlabs.ac.za> wrote:

> i'm new on using linux and i'm using fedora core 3.
> 
> how do i go about installing the packeges for using on
> FC3.
> 
> i was using kate to write my programs. can ONMIORB work
> with kate,
> i'm eager to learn more about corba and ORB on linux
> 
> please help
> 
> 
> 
> On Mon, 2005-06-27 at 12:00 +0100,
> omniorb-list-request at omniorb-support.com wrote:
> > Send omniORB-list mailing list submissions to
> > 	omniorb-list at omniorb-support.com
> > 
> > To subscribe or unsubscribe via the World Wide Web,
> visit
> > 
>
http://www.omniorb-support.com/mailman/listinfo/omniorb-list
> > or, via email, send a message with subject or body
> 'help' to
> > 	omniorb-list-request at omniorb-support.com
> > 
> > You can reach the person managing the list at
> > 	omniorb-list-owner at omniorb-support.com
> > 
> > When replying, please edit your Subject line so it is
> more specific
> > than "Re: Contents of omniORB-list digest..."
> > 
> > 
> > Today's Topics:
> > 
> >    1. omniORB and TAO  (dolgop at mccinet.ru)
> >    2. Re: Same machine connection and VPN (Luke Deller)
> >    3. Re: Same machine connection and VPN (Luke Deller)
> >    4. to compile on WinCE (Sang-Hoon,Lee)
> > 
> > 
> >
>
----------------------------------------------------------------------
> > 
> > Message: 1
> > Date: Sun, 26 Jun 2005 18:58:07 +0400
> > From: <dolgop at mccinet.ru>
> > Subject: [omniORB] omniORB and TAO 
> > To: omniorb-list at omniorb-support.com
> > Message-ID: <web-21273258 at mccinet.ru>
> > Content-Type: text/plain; charset="windows-1251"
> > 
> > > Hi!
> > > I've got message from TAO developers.
> > > TAO really doesn't support chunked valuetype encoding
> >  :-((
> > 
> > Hi!
> > 
> > There are 2 ways to solve this problem:
> > 1. Switch omnyORBpy from cdrValueChunkingStream to some
> > other type of cdrStream while it's coding ValueType.
> > 2. Create some analogue of cdrValueChunkingStream in
> TAO.
> > 
> > Is there some simple and safe method to change
> cdrStream
> > type from chunkingStream while coding ValueType?
> > 
> > 
> > 
> > ------------------------------
> > 
> > Message: 2
> > Date: Mon, 27 Jun 2005 09:45:52 +1000
> > From: Luke Deller <ldeller at xplantechnology.com>
> > Subject: Re: [omniORB] Same machine connection and VPN
> > To: Ken Ryall <kendev at mac.com>
> > Cc: omniORB-list at omniorb-support.com
> > Message-ID: <1119829553.5677.23.camel at localhost>
> > Content-Type: text/plain
> > 
> > Hi Ken,
> > 
> > On Fri, 2005-06-24 at 11:00 -0500, Ken Ryall wrote:
> > > Since we only intend for these two to operate on the
> same machine I
> > > started looking into how to configure omniORB to work
> around this
> > > problem. I started passing "-ORBendPoint
> giop:tcp:localhost:" or
> > > "-ORBendPoint giop:tcp:127.0.0.1:" to both client and
> server. This
> > > allowed the initial connection to work even when
> using the VPN.
> > > However, the callbacks from C++ to Java fail so I
> must be missing
> > > something else.
> > 
> > You will also need to configure the Java ORB to use
> localhost.
> > 
> > By default, both Java and omniORB will:
> >      1. listen for network connections on *all* network
> interfaces
> >      2. publish object references (IORs) using the
> hostname obtained
> >         from the operating system
> > 
> > You have reconfigured omniORB to use only localhost for
> both of the
> > above by using the "endPoint" option.
> > 
> > I'm not sure how to reconfigure the Java ORB to listen
> only on
> > localhost, but I know that you can adjust the hostname
> published in IORs
> > from the Java ORB by using the java property called
> > "com.sun.CORBA.ORBServerHost":
> > 
> >    java -Dcom.sun.CORBA.ORBServerHost=127.0.0.1 ...
> > 
> > If this is not sufficient to keep your firewall
> software happy, then you
> > might like to try out 
> > Luke.
> > 
> > 
> > ------------------------------
> > 
> > Message: 3
> > Date: Mon, 27 Jun 2005 09:49:28 +1000
> > From: Luke Deller <ldeller at xplantechnology.com>
> > Subject: Re: [omniORB] Same machine connection and VPN
> > To: Ken Ryall <kendev at mac.com>
> > Cc: omniORB-list at omniorb-support.com
> > Message-ID: <1119829768.5677.27.camel at localhost>
> > Content-Type: text/plain
> > 
> > Hi Ken,
> > 
> > On Fri, 2005-06-24 at 11:00 -0500, Ken Ryall wrote:
> > > Since we only intend for these two to operate on the
> same machine I
> > > started looking into how to configure omniORB to work
> around this
> > > problem. I started passing "-ORBendPoint
> giop:tcp:localhost:" or
> > > "-ORBendPoint giop:tcp:127.0.0.1:" to both client and
> server. This
> > > allowed the initial connection to work even when
> using the VPN.
> > > However, the callbacks from C++ to Java fail so I
> must be missing
> > > something else.
> > 
> > You will also need to configure the Java ORB to use
> localhost.
> > 
> > By default, both Java and omniORB will:
> >      1. listen for network connections on *all* network
> interfaces
> >      2. publish object references (IORs) using the
> hostname obtained
> >         from the operating system
> > 
> > You have reconfigured omniORB to use only localhost for
> both of the
> > above by using the "endPoint" option.
> > 
> > I'm not sure how to reconfigure the Java ORB to listen
> only on
> > localhost, but I know that you can adjust the hostname
> published in IORs
> > from the Java ORB by using the java property called
> > "com.sun.CORBA.ORBServerHost":
> > 
> >    java -Dcom.sun.CORBA.ORBServerHost=127.0.0.1 ...
> > 
> > If this is not sufficient to keep your firewall
> software happy, then you
> > might like to try out another Java ORB such as JacORB
> which may be more configurable:
> > 
> > http://www.jacorb.org/
> > 
> > Regards,
> > Luke.
> > 
> > (sorry about the previous incomplete reply which was
> accidentally sent)
> > 
> > 
> > ------------------------------
> > 
> > Message: 4
> > Date: Mon, 27 Jun 2005 19:17:38 +0900
> > From: "Sang-Hoon,Lee" <noohgnas at gmail.com>
> > Subject: [omniORB] to compile on WinCE
> > To: omniORB-list at omniorb-support.com
> > Message-ID: <a28457e405062703174fee058 at mail.gmail.com>
> > Content-Type: text/plain; charset=ISO-8859-1
> > 
> > hi advance..
> > 
> > Have you anybody some kind of documents to compile on
> WinCE environment?
> > 
> > I had seen someone who compiled to port on the
> environment. But, now,
> > I don' t know who is.
> > 
> > thanks
> > 
> > 
> > ------------------------------
> > 
> > _______________________________________________
> > omniORB-list mailing list
> > omniORB-list at omniorb-support.com
> >
>
http://www.omniorb-support.com/mailman/listinfo/omniorb-list
> > 
> > 
> > End of omniORB-list Digest, Vol 26, Issue 24
> > ********************************************
> 
> 
> _______________________________________________
> omniORB-list mailing list
> omniORB-list at omniorb-support.com
>
http://www.omniorb-support.com/mailman/listinfo/omniorb-list
> 





God Bless 
    Sean Parker 





		
____________________________________________________ 
Yahoo! Sports 
Rekindle the Rivalries. Sign up for Fantasy Football 
http://football.fantasysports.yahoo.com



More information about the omniORB-list mailing list