Yurttas/PL/OOL/Java/F/08/02/01/00/index page

From ZCubes Wiki
Revision as of 15:11, 7 November 2013 by MassBot1 (talk | contribs) (Created page with "{| width="100%" cellpadding="4" | class="y01" | <span class="b10"> java programming language fundamentals </span> | class="y01" | <div class="right"><span class="h06b"> <sp...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
java programming language fundamentals
8. distributed object technology

CORBA - OMG - Inventory - 00

inventory application for store/retrieve server/client with CORBA using idlj

[ server and client on a local machine - this won't run through the web ]

  • idlj -fall Inventory00.idl
    [ creates Inventory00 directory with java code ]
  • javac InventoryServer00.java InventoryClient00.java InventoryImp00.java
  • orbd -ORBInitialPort 1500 localhost
    [ to start the ORB, on any command-line prompt with the choice of port and host ]
  • java InventoryServer00 -ORBInitialPort 1500 -ORBInitialHost localhost
    [ to start the server, on any command-line prompt with the matching port and host orbd ]
  • java InventoryClient00 -ORBInitialPort 1500 -ORBInitialHost localhost
    [ to start the client, on any command-line prompt with the matching port and host orbd/server ]

concurrency << | >> design patterns


Dr. Salih Yurttas