Python and CORBA

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • rodmc

    #1

    Python and CORBA

    Can anyone recommend an easy to install COBRA implementation which
    works with Python? I am using Windows XP.

    Thanks in advance.

    Best,

    rod

  • Simon Brunning

    #2
    Re: Python and CORBA

    On 21 Sep 2006 01:48:55 -0700, rodmc <userprogoogl e-139@yahoo.co.uk wrote:
    Can anyone recommend an easy to install COBRA implementation which
    works with Python? I am using Windows XP.
    <http://omniorb.sourcef orge.net/is the 2nd hit if you go to
    <http://www.google.com/search?q=python +corba>. ;-)

    --
    Cheers,
    Simon B,
    simon@brunningo nline.net

    Comment

    • Eric Brunel

      #3
      Re: Python and CORBA

      On Thu, 21 Sep 2006 10:48:55 +0200, rodmc <userprogoogl e-139@yahoo.co.uk >
      wrote:
      Can anyone recommend an easy to install COBRA implementation which
      works with Python? I am using Windows XP.
      I used to use fnorb (http://sourceforge.net/projects/fnorb), but the
      project seems to be dead. It still seems to work quite well, but I didn't
      test it on the latest Python versions.

      And it does meet your requirements: since it's a Python-only ORB, it's
      really easy to install. You basically just have to put it somewhere in
      your PYTHONPATH.
      Thanks in advance.
      HTH
      --
      python -c "print ''.join([chr(154 - ord(c)) for c in
      'U(17zX(%,5.zmz 5(17l8(%,5.Z*(9 3-965$l7+-'])"

      Comment

      • rodmc

        #4
        Re: Python and CORBA

        Thanks to everyone for their help. I had tried OmniORB and while the
        base library worked ok, the Python bit OmniORBpy seems to dislike
        working... Perhaps there is something wrong with my settings.

        I will also try the Python only suggestion.

        cheers,

        rod

        Comment

        • Diez B. Roggisch

          #5
          Re: Python and CORBA

          rodmc wrote:
          Thanks to everyone for their help. I had tried OmniORB and while the
          base library worked ok, the Python bit OmniORBpy seems to dislike
          working... Perhaps there is something wrong with my settings.
          Omniorb is very actively developed, try and post your problems on the
          mailing list:



          AFAIK Fnorb also had license issues - I'm not entirely sure of that, but
          better check it.

          Diez

          Comment

          • Paul McGuire

            #6
            Re: Python and CORBA

            "rodmc" <userprogoogl e-139@yahoo.co.uk wrote in message
            news:1158836775 .901518.85790@d 34g2000cwd.goog legroups.com...
            Thanks to everyone for their help. I had tried OmniORB and while the
            base library worked ok, the Python bit OmniORBpy seems to dislike
            working... Perhaps there is something wrong with my settings.
            >
            I will also try the Python only suggestion.
            >
            cheers,
            >
            rod
            >
            Give OmniORB another shot, it is quite fully featured, including
            NamingService, Trader, idl compiler. I found the Python integration with
            OmniORBpy worked for me, too.

            -- Paul


            Comment

            • Eric Brunel

              #7
              Re: Python and CORBA

              On Thu, 21 Sep 2006 15:11:07 +0200, Diez B. Roggisch <deets@nospam.w eb.de>
              wrote:
              AFAIK Fnorb also had license issues - I'm not entirely sure of that, but
              better check it.
              The earlier versions seem to have been somewhat proprietary, but the
              latest one should be as free as Python is. Extract from the license
              agreement (just before the legalese starts):

              """
              The intent of this license is to grant you the same freedoms to use fnOrb
              that you enjoy under the Python 2.2 License
              (http://www.python.org/2.2/license.html).
              """

              So there should be no problem with that (AFAICT, but I'm no lawyer...)

              HTH
              --
              python -c "print ''.join([chr(154 - ord(c)) for c in
              'U(17zX(%,5.zmz 5(17l8(%,5.Z*(9 3-965$l7+-'])"

              Comment

              Working...