"The acronym MICO expands to MICO Is CORBA. The intention of this project is to provide a freely available and fully compliant implementation of the CORBA 2.2 standard. ... Our goal is to keep MICO compliant to the latest CORBA standard. The sources of MICO are placed under the GNU-copyright notice."--from the MICO web page.
I was able to compile, build, and run the account and account2 examples with essentially no problem (but see below). The first of these isn't very interesting because it doesn't separate the server and client, but the second one does. Although the shell script in account2 runs the client on the same machine as the server, you can start the client separately on another machine. I tried running the server on monica and the client on yoyo, and it worked. I encourage you to try this example and other examples yourself.
The only problem I encountered so far is that the linking phase is extremely slow--on the order of five to ten minutes to build each of the client and the server. Surely this must be due to some configuration problem, but we'll have to see what the time can be reduced to before committing to making extensive use of this CORBA implementation. (Nathan is also installing some other free CORBA implementations and is working on getting the license for Orbix reinstated.)
Shawn supplied the following information which may be useful to others wanting to build MICO on VC 5.0 themselves.
Last night, I was able to build MICO using Windows 98 and Visual C++ 5.0 with Service Pack 3. This requires some manual setup of the Visual C++ compiler not done by the install program (in the area of dos compilation).First, the Visual C++ bin directory should be present in the path and a batch file vcvars32.bat must be run to enter all of the environment variables needed to run nmake from the dos prompt. Second, nmake is invoked using: nmake /f Makefile.win32 w95-all, not nmake /f Makefile.win32 win95-all as the documentation states. Lastly, the win32-bin directory that is created should be placed in your path for easy invocation of the idl, micod, and ird. The examples will call these files through batch files that need to be slightly modified to run on Win98 (currently written for Windows NT).
Shawn Bisgrove tested Java/C++ interoperability by adapting the textbook's Front Office example and using JDK 1.2, MICO 2.2.4, and idltojava (available free from java.sun.com when you register as a developer). See his DSC web page.