Advanced Programming Java-H-U4
Advanced Programming Java-H-U4
Figure 4.1: The server creates a server socket and, once a connection to a client is established, connects to
the client with a client socket.
A socket is one of the most fundamental technologies of computer network programming. It is a way of
connecting two nodes on a network to communicate with each other. Socket-based software usually runs on
two separate computers on the network, but sockets can also be used to communicate locally (interprocess) on
a single computer.
The Java Socket Programming has two sections.
▪ Java Server Socket Program
▪ Java Client Socket Program
The next step is to create an infinite loop for monitoring the request from client side and replying from server
side. When the Server Socket accept a request from the client side, it reads the data from DataInputStream
and also it writes the response to DataOutputStream.
Server Socket Example/Program
2) getByName(): getByName method returns an InetAddress for a host name passed to it as a parameter
argument. If this method unable to find out the host name, it throws an UnknownHostException.
Example
1. import java.rmi.*;
2. public interface rint extends Remote {
3. double fact(double x) throws RemoteException;
4. }
Step 2: Implementation Program
Define Methods only.
Open the second note pad, type the following program, and save the file as “rimp.java”.
return result;
}
}
Step 3: Creating Stub and Skeleton objects from the implementation class using rmic
The rmic tool is used to invoke the rmi compiler that creates the Stub and Skeleton objects. Its prototype is
rmic classname. For above program the following command need to be executed at the command prompt
rmic SearchQuery
STEP 4: Start the rmiregistry
Start the registry service by issuing the following command at the command prompt start rmiregistry
STEP 5: Create and execute the server application program
The next step is to create the server application program and execute it on a separate command prompt.
The server program uses createRegistry method of LocateRegistry class to create rmiregistry within the server
JVM with the port number passed as argument.
The rebind method of Naming class is used to bind the remote object to the new name.
Output
First Run the server program and then the client program
Note: While typing or before running the client and server program, add an interface .jar file which is
previously <clean-build> from your current project folder→dist folder