Skip to content

Latest commit

 

History

History
40 lines (17 loc) · 1000 Bytes

File metadata and controls

40 lines (17 loc) · 1000 Bytes

CORBA-Server-Client-RMI

This is a Java/CORBA server that illustrates the use of stringified object references stored in a file on a server that is different from the machine on which either the CORBA server or the CORBA client are located. This server provides a servant object that returns the date and time as a string.

Terminal 1

Compiling the idl file

$ idlj -fall -oldImplBase Date.idl

Compliling all our java files at once

$ javac *. java

Start RMI Registry

$ rmiregistry &

Start the Server

$ java DateServer

screen shot 2017-03-09 at 04 24 25

Terminal 2

Start the Client

$ java DateClient

screen shot 2017-03-09 at 04 25 43

Copyrights - Navjot Singh Virk (https://navjot.mrvirk.com & https://mrvirk.com)