Write your own http client to test your server

Assignment Help JAVA Programming
Reference no: EM131646337

Web Server Assignment

In this assignment, you will learn the basics of socket programmingfor 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 thathandlesone 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 at Week9 Lab

You will demonstrate your server code to your tutor. Your tutor will verify that you actually receive the contents of the HTML file from the server. Note your tutor will ask specific questions to each of you to check your understanding of the program.

Skeleton Python Code for the Web Server
#import socket module
from socket import *
import sys # In order to terminate the program

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
fori in range(0, len(outputdata)):
connectionSocket.send(outputdata[i].encode())
connectionSocket.send("\r\n".encode())

connectionSocket.close()
exceptIOError:
#Send response message for file not found
#Fill in start
#Fill in end
#Close client socket
#Fill in start
#Fill in end
serverSocket.close()
sys.exit()#Terminate the program after sending the corresponding data
Optional Exercises

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.

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_hostserver_port filename

Reference no: EM131646337

Questions Cloud

Medical practice organizational performance : Financial benchmarking seeks to measure how the medical practice organizational performance and how it stacks up against competitors
What role did the old party machines play : What role did the old party machines play & how & why might those roles have been transferred to national party organizations starting in the late 20th Century?
Receive sexual harassment training direct from a trainer : Should employees receive sexual harassment training direct from a trainer or would internet based training work?
Understanding of today organizations : The Organizational Theory text cites four theoretical contributions which are central to the understanding of today's Organizations.
Write your own http client to test your server : 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
The ship makes its first ever trip to the planet zargon : You have been assigned to the Starship Enterprise as the Political Officer as the ship makes its first ever trip to the planet Zargon.
Problem about oblique triangles : Work this custom problem about oblique triangles using the techniques you learned in this module.
Major distributor of household appliances : Alpha Appliances Inc. is major distributor of household appliances. If Alpha decides to produce, how many fans should it produce every time.
Accuracy or precision is required for the consequences : In addition to the opening questions, how do you determine what level of accuracy or precision is required for the consequences of alternatives?

Reviews

Write a Review

JAVA Programming Questions & Answers

  Write a method called listfilter

Write a method called listFilter() that takes in a list of strings, and returns a list containing only the strings that have an even length

  Exception handling for validating the input.

The program needs to have built in Exception handling for validating the input.

  Create a program in java that displays hello world

Create a program in Java that displays "Hello world!", No Design Section is required for this assignment, Copy and Paste your code into the Source Programs section and a screen shot of the results in the Output section.

  Build the gui layout of the gamecreate a class called

build the gui layout of the gamecreate a class called pipegameapp.java which will be the main game user interface. the

  Descriptionyou are to write a program that determines the

descriptionyou are to write a program that determines the day of the week for new years day in the year 3000. to do

  Write the two methods main and display.

Implement your solution using one class. In your class, provide two methods - main and display.

  Technical community blog

Write a blog article for a coding and technical community blog.

  Creates a list of integers

Modify the List class of Figure 21.3 in the textbook to include a method that recursively searches a linked-list for a specified value.

  Write a method called hash midpoint

Write a method called hasMidpoint that accepts three integers as parameters and returns 'true' if one of the integers is the midpoint between the other two integers; that is to is if one integer is exactly between the two others. The method should re..

  Create an application that will allow a new customer

Create an application that will allow a new customer to order a house. You'll allow the customer to choose among four models (Aspen, Britattany, Colonial, and Dartmoor) by creating separate ButtonGroups.

  Write a void function this passed three integers

1. Write a void function this passed three integers by reference. The function should rearrange the parameter values so that the first parameter will get the smallest value; the second parameter the middle value; and the third parameter the largest v..

  Negatively impacting health care currently

Identify and explain at least two events that are negatively impacting health care currently. Tell us why you think these items are negatively impacting the access to care, and make sure that you cite your references.

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