Network Programming and Java Sockets
Network Programming and Java Sockets
Java Sockets
Rajkumar Buyya
Grid Computing and Distributed Systems (GRIDS) Laboratory
Dept. of Computer Science and Software Engineering
University of Melbourne, Australia
http://www.gridbus.org/~raj or http://www.buyya.com
1
Agenda
Introduction
Elements of Client Server Computing
Networking Basics
Understanding Ports and Sockets
Java Sockets
Implementing a Server
Implementing a Client
Sample Examples
Conclusions
2
Introduction
3
Internet Applications Serving Local
and Remote Users
PC client
Internet
Server
Local Area Network
PDA
4
Internet & Web as a delivery Vehicle
5
Increased demand for Internet
applications
To take advantage of opportunities presented by
the Internet, businesses are continuously seeking
new and innovative ways and means for offering
their services via the Internet.
This created a huge demand for software
designers with skills to create new Internet-enabled
applications or migrate existing/legacy applications
on the Internet platform.
Object-oriented Java technologies—Sockets,
threads, RMI, clustering, Web services-- have
emerged as leading solutions for creating portable,
efficient, and maintainable large and complex
Internet applications.
6
Elements of C-S Computing
t
es
qu
Re
Client
Server
Network
Re
su
lt
Client machine
Server machine
7
Networking Basics
Applications Layer TCP/IP Stack
Standard apps
HTTP
FTP
Telnet Application
User apps (http,ftp,telnet,…)
Transport Layer
Transport
TCP
UDP (TCP, UDP,..)
Programming Interface: Network
Sockets
Network Layer (IP,..)
IP Link
Link Layer (device driver,..)
Device drivers
8
Networking Basics
TCP (Transport Control TCP/IP Stack
Protocol) is a connection-
oriented protocol that Application
provides a reliable flow of (http,ftp,telnet,…)
data between two
Transport
computers.
(TCP, UDP,..)
Example applications: Network
HTTP (IP,..)
FTP
Link
Telnet
(device driver,..)
9
Networking Basics
UDP (User Datagram TCP/IP Stack
Protocol) is a protocol
that sends independent Application
packets of data, called (http,ftp,telnet,…)
datagrams, from one
Transport
computer to another with
(TCP, UDP,..)
no guarantees about
Network
arrival.
(IP,..)
Example applications: Link
Clock server
(device driver,..)
Ping
10
Understanding Ports
12
Sockets
Sockets provide an interface for programming networks
at the transport layer.
Network communication using Sockets is very much
similar to performing file I/O
In fact, socket handle is treated like file handle.
The streams used in file I/O operation are also applicable to
socket-based I/O
Socket-based communication is programming language
independent.
That means, a socket program written in Java language can
also communicate to a program written in Java or non-Java
socket program.
13
Socket Communication
Connection request
port
server
Client
14
Socket Communication
If everything goes well, the server accepts the
connection. Upon acceptance, the server gets a new
socket bounds to a different port. It needs a new socket
(consequently a different port number) so that it can
continue to listen to the original socket for connection
requests while serving the connected client.
port
server
port
Client
port Connection
15
Sockets and Java Socket Classes
Input/read stream
Socket(“128.250.25.158”, 1234)
It can be host_name like “mandroo.cs.mu.oz.au” 17
Implementing a Server
1. Open the Server Socket:
ServerSocket server;
DataOutputStream os;
DataInputStream is;
server = new ServerSocket( PORT );
2. Wait for the Client Request:
Socket client = server.accept();
3. Create I/O streams for communicating to the client
is = new DataInputStream( client.getInputStream() );
os = new DataOutputStream( client.getOutputStream() );
4. Perform communication with client
Receive from client: String line = is.readLine();
Send to client: os.writeBytes("Hello\n");
5. Close sockets: client.close();
For multithreaded server:
while(true) {
i. wait for client requests (step 2 above)
ii. create a thread with “client” socket as parameter (the thread creates streams (as in step
(3) and does communication as stated in (4). Remove thread once service is provided.
} 18
Implementing a Client
19
A simple server (simplified code)
// SimpleServer.java: a simple server program
import java.net.*;
import java.io.*;
public class SimpleServer {
public static void main(String args[]) throws IOException {
// Register service on port 1234
ServerSocket s = new ServerSocket(1234);
Socket s1=s.accept(); // Wait and accept a connection
// Get a communication stream associated with the socket
OutputStream s1out = s1.getOutputStream();
DataOutputStream dos = new DataOutputStream (s1out);
// Send a string!
dos.writeUTF("Hi there");
// Close the connection, but not the server socket
dos.close();
s1out.close();
s1.close();
}
}
20
A simple client (simplified code)
// SimpleClient.java: a simple client program
import java.net.*;
import java.io.*;
public class SimpleClient {
public static void main(String args[]) throws IOException {
// Open your connection to a server, at port 1234
Socket s1 = new Socket("mundroo.cs.mu.oz.au",1234);
// Get an input file handle from the socket and read the input
InputStream s1In = s1.getInputStream();
DataInputStream dis = new DataInputStream(s1In);
String st = new String (dis.readUTF());
System.out.println(st);
// When done, just close the connection and exit
dis.close();
s1In.close();
s1.close();
}
}
21
Run
Run Server on mundroo.cs.mu.oz.au
[raj@mundroo] java SimpleServer &
22
Socket Exceptions
try {
Socket client = new Socket(host, port);
handleConnection(client);
}
catch(UnknownHostException uhe)
{ System.out.println("Unknown host: " + host);
uhe.printStackTrace();
}
catch(IOException ioe) {
System.out.println("IOException: " + ioe);
ioe.printStackTrace();
}
23
ServerSocket & Exceptions
public ServerSocket(int port) throws IOException
Creates a server socket on a specified port.
A port of 0 creates a socket on any free port. You can use
getLocalPort() to identify the (assigned) port on which this
socket is listening.
The maximum queue length for incoming connection
indications (a request to connect) is set to 50. If a connection
indication arrives when the queue is full, the connection is
refused.
Throws:
IOException - if an I/O error occurs when opening the socket.
SecurityException - if a security manager exists and its
checkListen method doesn't allow the operation.
24
Server in Loop: Always up
// SimpleServerLoop.java: a simple server program that runs forever in a single thead
import java.net.*;
import java.io.*;
public class SimpleServerLoop {
public static void main(String args[]) throws IOException {
// Register service on port 1234
ServerSocket s = new ServerSocket(1234);
while(true)
{
Socket s1=s.accept(); // Wait and accept a connection
// Get a communication stream associated with the socket
OutputStream s1out = s1.getOutputStream();
DataOutputStream dos = new DataOutputStream (s1out);
// Send a string!
dos.writeUTF("Hi there");
// Close the connection, but not the server socket
dos.close();
s1out.close();
s1.close();
}
}
}
25
Multithreaded Server: For Serving
Multiple Clients Concurrently
Client 2
Process
26
Conclusion
27