Basics of socket programming for tcp connections in python

Assignment Help Computer Networking
Reference no: EM133089397

Socket Programming Assignment: Web Server

In this lab, you will learn the basics of socket programming for TCP connections in Python: how to create a socket, bind it to a specific address and port, as well as send and receive a HTTP packet. You will also learn some basics of HTTP header format.

You will develop a web server that handles one HTTP request at a time. Your web server should accept and parse the HTTP request, get the requested file from the server's file system, create an HTTP response message consisting of the requested file preceded by header lines, and then send the response directly to the client. If the requested file is not present in the server, the server should send an HTTP "404 Not Found" message back to the client.

Code
Below you will find the skeleton code for the Web server. You are to complete the skeleton code. The places where you need to fill in code are marked with #Fill in start and #Fill in end. Each place may require one or more lines of code.

Running the Server
Put an HTML file (e.g., HelloWorld.html) in the same directory that the server is in. Run the server program. Determine the IP address of the host that is running the server (e.g., 128.238.251.26). From another host, open a browser and provide the corresponding URL.

‘HelloWorld.html' is the name of the file you placed in the server directory. Note also the use of the port number after the colon. You need to replace this port number with whatever port you have used in the server code. In the above example, we have used the port number 6789. The browser should then display the contents of HelloWorld.html. If you omit ":6789", the browser will assume port 80 and you will get the web page from the server only if your server is listening at port 80.

Then try to get a file that is not present at the server. You should get a "404 Not Found" message.

What to Hand in
You will hand in the complete server code along with the screen shots of your client browser, verifying that you actually receive the contents of the HTML file from the server.

Skeleton Python Code for the Web Server
#import socket module from socket import *
serverSocket = socket(AF_INET, SOCK_STREAM) #Prepare a sever socket
#Fill in start #Fill in end while True:
#Establish the connection print 'Ready to serve...'
connectionSocket, addr = #Fill in start #Fill in end

try:

message = #Fill in start #Fill in end

filename = message.split()[1] f = open(filename[1:])
outputdata = #Fill in start #Fill in end

#Send one HTTP header line into socket

#Fill in start #Fill in end
#Send the content of the requested file to the client for i in range(0, len(outputdata)):
connectionSocket.send(outputdata[i]) connectionSocket.close()
except IOError:

#Send response message for file not found

#Fill in start #Fill in end
#Close client socket

#Fill in start #Fill in end

serverSocket.close()

Optional Exercises

Exercise 1. Currently, the web server handles only one HTTP request at a time. Implement a multithreaded server that is capable of serving multiple requests simultaneously. Using threading, first create a main thread in which your modified server listens for clients at a fixed port. When it receives a TCP connection request from a client, it will set up the TCP connection through another port and services the client request in a separate thread. There will be a separate TCP connection in a separate thread for each request/response pair.

Exercise 2. Instead of using a browser, write your own HTTP client to test your server. Your client will connect to the server using a TCP connection, send an HTTP request to the server, and display the server response as an output. You can assume that the HTTP request sent is a GET method.

The client should take command line arguments specifying the server IP address or host name, the port at which the server is listening, and the path at which the requested object is stored at the server. The following is an input command format to run the client.

client.py server_host server_port filename

Attachment:- Socket Programming Assignment.rar

Reference no: EM133089397

Questions Cloud

What is the balance of the receivables six month after : LUE COMPANY provide instalment schemes in selling its products in the market thus, What is the balance of the receivables six month after
Recommend a decision based on the use of the optimistic : The best selection of plant size depends on how the marketplace reacts to the new product line. To conduct an analysis, marketing management has decided to view
Business processes in the organization : Use Benetton to explain how ICT supports the business processes in the organization.
Human resources manager assignment-Staffing Function : Share your healthcare setting and selected staffing function of focus. Share why this specific staffing focus area is important to selected healthcare setting.
Basics of socket programming for tcp connections in python : Basics of socket programming for TCP connections in Python: how to create a socket, bind it to a specific address and port, as well as send and receive a HTTP
Principles of crr : Should a fire department fully embrace the principles of CRR and dedicate time, funding, and resources to managing risk and preventing emergencies from occurrin
Explain the concept of entering global markets : Explain the concept of Entering Global Markets
Discuss the effectiveness of type of power : Provide definitions for coercive, normative, and remunerative power as they relate to the correctional system. Discuss the effectiveness of each type of power.
After-tax required rate of return : UOWD Motors must purchase some new machines and needs to evaluate two different types. The first type of machine is the 'Rockbuilt' machine, which costs $74,000

Reviews

Write a Review

Computer Networking Questions & Answers

  Explain a matrix that identifies specific departmental needs

Develop a matrix that identifies specific departmental needs for a company that you are familiar with.

  Create process map show various component of cloud computing

Create a 3-page process map using Visio showing the various components of cloud computing and who has responsibility for the implementation.

  Complete the information-level design of the database

MN405 - Data and Information Management - Data model development and implementation - Analyse the all user requirements given above, identify

  How do you patch a linux server

How do you patch a Linux server? Using the Internet, research ways that Linux computers are patched. Explain how these procedures differ from patching Windows.

  Among the following devices

Among the following devices, which one can you not use full duplex connection? Switch, router , hub

  What are the functions of the application layer

What are the functions of the application layer? How were the earliest application-layer protocols defined? What application do you spend the most time on

  Describe the company network and interconnection

Describe the company network and interconnection

  Write a short paper on the network components

Perform research and write a short paper on the network components that make up a local area network.

  A small picture that represents a command

A small picture that represents a commandA small picture that represents a command

  Issues in an iot network and security

Discuss and make informed comments on emerging areas of the Internet of Things, demonstrating an understanding of the social, environmental, and commercial

  Define the term hacking

Define the term hacking.

  Write short notes after investigating the scenario

Explain how does the CSMA/CA in DCF handle media contention and what would you recommend as a remedy to this drawback, if there any

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd