Results 1 to 2 of 2

Thread: Porting to Ice from Orbacus

  1. #1
    amanison is offline Registered User
    Name: Andrew Manison
    Organization: Ansel Systems, Inc
    Project: Automation framework
    Join Date
    Oct 2008
    Posts
    1

    Porting to Ice from Orbacus

    We have a legacy project that was written on top of Orbacus. I am looking to use it at the basis of a new open source project, and am looking for a replacement ORB. How much work will it be to port it to Ice, as opposed to finding an open source CORBA ORB? We used the Naming and Event services extensively, and the project was more peer-to-peer than a typical CORBA project.

  2. #2
    michi's Avatar
    michi is offline Registered User
    Name: Michi Henning
    Organization: Triodia Technologies
    Project: I have a passing interest in Ice :-)
    Join Date
    Feb 2003
    Location
    Brisbane, Australia
    Posts
    1,055
    It is difficult to say without knowing a lot more about your project.
    You don't say what language. C++, Java? What IDL types are used for your definitions? (IDL and Slice differ in the types they provide. Are you using type Any, the DII?)

    Ice does not have a naming service (and does not need one) because proxies are not opaque. To get access to initial bootstrapping objects, you can use IceGrid. For other proxies, you can simply construct them using as the object key the name that you would otherwise use to look up an IOR in the naming service. Ice provides IceStorm, which is similar to the CORBA event service, but is simpler and more scalable. In addition, IceStorm does not require the application to be aware of the channel topology for federation.

    In general, Ice is similar to CORBA "in spirit", but quite different (that is, much simpler) than CORBA in detail.

    I suggest that you have a closer look at Ice and write a few simple programs. This will give you a much better feel for what is possible. Most of your CORBA concepts will translate cleanly to Ice. However, because the APIs are quite different, I wouldn't call this a "port". It's more like a "translation".

    Cheers,

    Michi.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Ice porting on Freescale Imx35
    By piccinini in forum Help Center
    Replies: 2
    Last Post: 02-18-2011, 10:52 AM
  2. porting an Ice App to IceE
    By Paul22 in forum Help Center
    Replies: 3
    Last Post: 01-04-2010, 11:54 AM
  3. Porting ICE to LabVIEW using .Net interface
    By stancilmor in forum Help Center
    Replies: 2
    Last Post: 01-28-2009, 04:19 PM
  4. Autotools Porting
    By ChrisWhite in forum Comments
    Replies: 3
    Last Post: 11-02-2006, 02:12 PM
  5. porting
    By diddek in forum Help Center
    Replies: 2
    Last Post: 10-07-2004, 10:41 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •