Slashdot Mirror


User: motus

motus's activity in the archive.

Stories
0
Comments
2
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2

  1. What about ICE or CORBA? on Web Interfaces for C++ Introspection? · · Score: 3, Insightful
    I think the challenge here is not how to represent the data visually (i.e. web/GUI), but how to control a C++ object from the remote application. For that puropse, I would suggest CORBA. You can define all controllable classes in CORBA IDL, compile it into C++ code and integrate with your existing application with minimum efforts. CORBA client should not necessarily written in C++ - it can be Java or Python, for example. I have very good experience with omniORB (http://omniorb.sourceforge.net/). It supports both C++ and Python, and I use a bunch of Python scripts as a test harness for my C++ CORBA services. Besides omniORB, there are lots other decent implementations of CORBA in many programming languages (http://www.omg.org/technology/corba/corbadownload s.htm).

    PS. Good alternative to CORBA is ICE (http://www.zeroc.com/ice.html), which is basically the same thing as CORBA, and founded by one of the CORBA gurus. ICE has much better C++ mapping, and lots of other nice features.

    Hope this helps!

  2. Re:Biggest Issue with MS Interoperability on Microsoft Linux Lab Manager Responds · · Score: 1
    Windows already "natively" supports alternative file systems via IFS. It's just that someone needs to write a file system driver for whatever file system is desired.

    The problem is that this other file system will always remain "secondary". For example, even having a proper driver, how easy it is to install Windows from CD on, say, ReiserFS or ext3 partition?