Installing the application :
Install JDK 1.2. Download it from Sun Microsystems.
Download the application source code. (zip format)
Go to command line prompt. Change the directory to the location where you saved BankApp.idl file.
Enter the compiler command :
idltojava -fno-cpp BankApp.idl
Compile the application source code :
javac BankClient.java BankServer.java AccountManagerImpl.java AccountImpl.java BankApp\*.java
Running the application :
From a MS-DOS system prompt (Windows) start the Java IDL name server :
tnameserv -ORBInitialPort 1050
From a second system prompt start the BankApp server :
java BankServer -ORBInitialPort 1050
From a second system prompt start the BankApp client :
java BankClient -ORBInitialPort 1050