Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

this is the code i have so far. I can get the server program to run and get the html file to show up in

image text in transcribedthis is the code i have so far. I can get the server program to run and get the html file to show up in the browser. I cant get it to show up on another host. only got it to do that once. any help to point me in the right direction is appreciated. I think i have some issue in my code thats no allowing certain steps to happen to run the code properly
image text in transcribedthis is the assignment problem. thank you
File Edit Format Run Options Window - Help from socket import* port sys serverSocket= socket (AF_INET, SOCK STREAM) server Port=80 Host = 192.168.4.34 serverSocket.bind((Host, server Port)) serverSocket.listen (1) while True: print("ready to serve...") connectionSocket, addr- serverSocket.accept() try: message - connectionSocket.recv(1024) filename = message.split() [1] f = open(filename (1:1) output data = f.read() connectionSocket.send("HTTP/1.0 200 OK Content Type: text/hmt1 ".encode()) for i in range(0, len(outputdata)): connectionSocket.send (outputdata[i].encode()) connectionSocket.send(" ".encode()) connectionSocket.close() except IOError: print("Eile Not Found") connectionSocket.send("HTTP/1.0 404 NOT FOUND ".encode()) connectionSocket.close() serverSocket.close() syn.exit() Lab 1: Web Server Lab 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 bal in code are marked with 17111 in start and all in end. Each place may require one or more lines of code. Running the Server Put an HTML file (e.g., Hello World.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 (eg. 128.238.251.26). From another host, open a browser and provide the corresponding URL For example: http://128.238 251.26:6789/Hello World.html

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle Database 19c DBA By Examples Installation And Administration

Authors: Ravinder Gupta

1st Edition

B09FC7TQJ6, 979-8469226970

More Books

Students also viewed these Databases questions

Question

Why is reverse engineering important?

Answered: 1 week ago

Question

What does Processing of an OLAP Cube accomplish?

Answered: 1 week ago