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

From ZCubes Wiki
Revision as of 15:05, 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 - Hello - 00

hello message server/client with CORBA using idlj

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

  • idlj -fall Hello00.idl
    [ creates Hello00 directory with java code ]
  • javac HelloServer00.java HelloClient00.java HelloImp00.java
  • orbd -ORBInitialPort 1500 localhost
    [ to start the ORB, on any command-line prompt with the choice of port and host ]
  • java HelloServer00 -ORBInitialPort 1500 -ORBInitialHost localhost
    [ to start the server, on any command-line prompt with the matching port and host orbd ]
  • java HelloClient00 -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