nathan.middleware
Class Server

java.lang.Object
  extended by nathan.middleware.Server

public class Server
extends java.lang.Object

ServerApplication starts the remote object so the client can call the remote methods on the object.

To start the server: Server requires the arguments [Object Name] [Registry IP] [Registry Port] [Server Port].
Object name is the name to be used for the remote object.
Registry Ip is the ip address of the registry the server will use to bind the object.
Registry port is the port number that registry is listening on.
Server port is the port number which the server will listen on.

Author:
Nathan Balon
Advance Operating Systems CIS 578
University of Michigan Dearborn
Remote Method Invocation Middleware Project

Constructor Summary
Server()
           
 
Method Summary
static void main(java.lang.String[] args)
          main entry point to the server application
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Server

public Server()
Method Detail

main

public static void main(java.lang.String[] args)
main entry point to the server application

Parameters:
args - the command line arguments. Server requires the arguments [Object Name] [Registry IP] [Registry Port] [Server Port]. Object name is the name to be used for the remote object. Registry Ip is the ip address of the registry the server will use to bind the object. Registry port is the port number that registry is listening on. Server port is the port number which the server will listen on.