Copyright (c) Qusay H. Mahmoud
35
Step 4: implement the server….
lCreate and initialize the ORB:
l   ORB orb = ORB.init(argv, null);
l
lCreate the servant and register it with ORB
l      HelloServant helloRef = new HelloServant();
l      orb.connect(helloRef);
l