Java IDL is a CORBA-compliant technology for distributed objects that lets objects interact regardless of whether they are written in the Java programming language or another language.
Hello StringifiedServer.java creates and stores a reference to a stringified object so a client can access it. The reference is written to the disk in the form of a text file. A stringified object is used when no naming service is available in the distributed environment. For supporting information see The Java Tutorial Continued: Java IDL.
FileServer.java implements a CORBA server that initializes the ORB, creates a FileServant object, registers the object in the CORBA Naming Service (COS Naming), prints a status message, and waits for incoming client requests. For supporting information see Distributed Java Programming with RMI and CORBA.
Add.idl defines an interface in the OMG Interface Definition Language (IDL) for an addition operation. For supporting information see CORBA Programming with J2SE 1.4.
AddServer.java implements a sample server that does such things as create and initialize the ORB, and create an instance of the the interface and registers it with the ORB. For supporting information see CORBA Programming with J2SE 1.4.
AddServer3.java implements a persistent server. and create an instance of the the interface and registers it with the ORB. For supporting information see CORBA Programming with J2SE 1.4.
MathServer.java implemens the CORBA server to initialize the ORB, create a MultiplyServant object, register the object in the CORBA Naming Service (COS Naming), print a status message, and wait for incoming client requests. For supporting information see Servlet Inter-Communication with CORBA.