Presentation is loading. Please wait.

Presentation is loading. Please wait.

SOCKET PROGRAMMING. Client/Server Communication At a basic level, network-based systems consist of a server, client, and a media for communication as.

Similar presentations


Presentation on theme: "SOCKET PROGRAMMING. Client/Server Communication At a basic level, network-based systems consist of a server, client, and a media for communication as."— Presentation transcript:

1 SOCKET PROGRAMMING

2 Client/Server Communication At a basic level, network-based systems consist of a server, client, and a media for communication as shown in Fig: A computer running a program that makes a request for services is called client machine. A computer running a program that offers requested services from one or more clients is called server machine. The media for communication can be wired or wireless network.

3 TCP is a connection-oriented protocol that provides a reliable flow of data between two computers. Example applications that use such services are HTTP, FTP, and Telnet. UDP is a protocol that sends independent packets of data, called data grams, from one computer to another with no guarantees about arrival and sequencing. Example applications that use such services include Clock server and Ping. The TCP and UDP protocols use ports to map incoming data to a particular process running on a computer. Port is represented by a positive (16-bit) integer value. Some ports have been reserved to support common/well known services: – ftp 21/tcp – telnet 23/tcp – smtp 25/tcp – login 513/tcp – http 80/tcp,udp – https 443/tcp,udp – User-level process/services generally use port number value >= 1024.

4 Hosts Identification and Service Ports IP address : Every computer on the Internet is identified by a unique, 4-byte IP address. This is typically written in dotted quad format like 128.250.25.158 where each byte is an unsigned value between 0 and 255. Port : A logical access point, represented by a 16-bit integer number is used. That means, each service offered by a computer is uniquely identified by a port number.

5

6 SOCKET PROGRAMMING AND JAVA.NET CLASS A socket is an endpoint of a two-way communication link between two programs running on the network. Socket is bound to a port number and ip address so that the TCP layer can identify the application that data is destined to be sent. Java provides a set of classes, defined in a package called java.net, to enable the rapid development of network applications. Key classes, interfaces, and exceptions in java.net package simplifying the complexity involved in creating client and server programs are:

7 THE INTERFACES ContentHandlerFactory FileNameMap SocketImplFactory URLStreamHandlerFactory THE CLASSES ContentHandler DatagramPacket DatagramSocket DatagramSocketImpl HttpURLConnection InetAddress MulticastSocket ServerSocket Socket SocketImpl URL URLConnection URLEncoder URLStreamHandler EXCEPTIONS BindException ConnectException ProtocolException SocketException UnknownHostException UnknownServiceException

8 TCP/IP SOCKET PROGRAMMING The two key classes from the java.net package used in creation of server and client programs are: – ServerSocket – Socket A server program creates a specific type of socket that is used to listen for client requests (server socket),In the case of a connection request, the program creates a new socket through which it will exchange data with the client using input and output streams. The socket abstraction is very similar to the fi le concept: developers have to open a socket, perform I/O, and close it

9 A simple Server Program in Java The steps for creating a simple server program are: 1. Open the Server Socket: ServerSocket server = new ServerSocket( PORT ); 2. Wait for the Client Request: Socket client = server.accept(); 3. Create I/O streams for communicating to the client DataInputStream is = new DataInputStream(client.getInputStream()); DataOutputStream 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 socket: client.close();

10 An example program illustrating creation of a server socket, waiting for client request, and then responding to a client that requested for connection by greeting it is given below: Program // 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 1254 ServerSocket s = new ServerSocket(1254); 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(); }

11 A simple Client Program in Java The steps for creating a simple client program are: 1. Create a Socket Object: Socket client = new Socket(server, port_id); 2. Create I/O streams for communicating with the server. is = new DataInputStream(client.getInputStream()); os = new DataOutputStream(client.getOutputStream()); 3. Perform I/O or communication with the server: Receive data from the server: String line = is.readLine(); Send data to the server: os.writeBytes(“Hello\n”); 4. Close the socket when done: client.close();

12 An example program illustrating establishment of connection to a server and then reading a message sent by the server and displaying it on the console is given below: // 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 1254 Socket s1 = new Socket(“localhost”,1254); // 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(); }

13 try { c=s.accept(); is=new DataInputStream(c.getInputStream()); ps=new PrintStream(c.getOutputStream()); while(true) { line=is.readLine(); ps.println(line); } } catch(IOException e) { System.out.println(e); } } } SERVER SIDE import java.net.*; import java.io.*; public class EServer { public static void main(String args[]) { ServerSocket s=null; String line; DataInputStream is; PrintStream ps; Socket c=null; try { s=new ServerSocket(9000); } catch(IOException e) { System.out.println(e); }

14 try { os=new PrintStream(c.getOutputStream()); is=new DataInputStream(System.in); is1=new DataInputStream(c.getInputStream()); while(true) { System.out.println("Client:"); line=is.readLine(); os.println(line); System.out.println("Server:" + is1.readLine()); } } catch(IOException e) { System.out.println("Socket Closed!"); } } } CLIENT SIDE import java.net.*; import java.io.*; public class EClient { public static void main(String arg[]) { Socket c=null; String line; DataInputStream is,is1; PrintStream os; try { c=new Socket("10.0.200.43",9000); } catch(IOException e) { System.out.println(e); }

15 OUTPUT Server C:\Program Files\Java\jdk1.5.0\bin>javac EServer.java Note: EServer.java uses or overrides a deprecated API. Note: Recompile with -deprecation for details. C:\Program Files\Java\jdk1.5.0\bin>java EServer C:\Program Files\Java\jdk1.5.0\bin>Client Client C:\Program Files\Java\jdk1.5.0\bin>javac EClient.java Note: EClient.java uses or overrides a deprecated API. Note: Recompile with -deprecation for details. C:\Program Files\Java\jdk1.5.0\bin>java EClient Client:Hai Server Server:Hai Server Client:Hello Server:Hello Client:end Server:end Client:ds Socket Closed!


Download ppt "SOCKET PROGRAMMING. Client/Server Communication At a basic level, network-based systems consist of a server, client, and a media for communication as."

Similar presentations


Ads by Google