Example of basic remote object creation and remote method call.

* description 

Compare Client.java with Local.java. The difference is the magic words.
Both access to Server.java.

Client.java is the simplest version. Client2.java shows how to set
default port number for outgoing. Client3.java shows how to set port
number for each server.

You can set port number of a horb server by giving -port option as:

	horb -port 8887


* version

Author: HIRANO Satoshi
Versioin: 1.3

* How to compile and run

c:> horbc Server.java
c:> horbc -c Client.java Local.java Client2.java Client3.java

c:> horb -v             (start a HORB server in another window
                         or another DOS window)

c:> java horb.examples.clientServer.Local
c:> java horb.examples.clientServer.Client
c:> java horb.examples.clientServer.Client2
c:> java horb.examples.clientServer.Client3


* Classes

   Server.java		simple server class
   Local.java           local version of Client.java
   Client.java		simplest client
   Client2.java		shows how to set default port for outgoing
   Client3.java		shows how to set port for a server

* files generated from server.java by proxy class generator

   server_Proxy.java	proxy class to access server
   server_Skeleton.java	skeleton class to access server
