Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Create a web proxy server that can be connected by a single client and would only allow http requests. The proxy server should be able

Create a web proxy server that can be connected by a single client and would only allow http requests. The proxy server should be able to cache up to five recent websites.

Requirements:

  1. Create a C-based proxy server and a client using TCP sockets
  2. The proxy server should be able to accept and service single clients http requests
  3. The proxy server should be able to process the clients request and forward the response to the client
  4. The proxy server should run on cse01.cse.unt.edu machine and the client should run on cse02.cse.unt.edu machine
  5. The proxy server should be able to cache at least five recent requested webpages, if available

Procedure:

  1. Create a C-based server that can accept single clients request using TCP sockets
  2. The created proxy server should also be able to process the client HTTP request
  3. Make sure the proxy server runs on cse01.cse.unt.edu and the format to start the proxy server as follows

pserver

where pserver is the proxy server executable and port_number is the port number on which the proxy server listens

  1. Create a C-based client that can connect to the proxy server using TCP sockets
  2. Make sure the client runs on cse02.cse.unt.edu and connects to the proxy server. The user can request the desired web page using the below format

client

url:

where client is the client executable, port_number is the port number on which the client connects the server and url is the requested url starting with www

  1. Once the proxy server gets a request from the client, it checks the cache for the requested page. If the page is not found in the cache, then it forwards the request to the web server. Figure 1 shows the overall architecture
  2. The proxy server checks for the response from the web server
  3. If the HTTP response is 200, the returned web page from the web server is cached in the proxy server. The proxy server stores the webpage in a file and assigns a filename based on the time of visit. The filename format is YYYYMMDDhhmmss. Where YYYY is the year, MM is the month, DD is the day, hh is the hour in 24-hour format, mm is the minutes, and ss is the seconds when the website was visited
  4. A list file (list.txt) is created which stores the URL of the webpage and the associated cached web page filename
  5. The list file stores five recent URLs. The cached websites that are not listed in the list file should be deleted
  6. Once the returned web page is cached, the web page is forwarded to the client. Verify to see if the returned page is same as the browser returned page.
  7. If the HTTP response is not 200, do not cache the web page instead forward the HTTP response to the client
  8. When the client requests a webpage that is in the list.txt file (cached) the stored page is returned
  9. Test web caching by accessing multiple websites

List.txt

www.google.com 20200205090000

www.w3.org 20200205090100

www.example.com 20200205090200

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

Database Concepts International Edition

Authors: David M. Kroenke

6th Edition International Edition

0133098222, 978-0133098228

More Books

Students also viewed these Databases questions

Question

obtain a point estimate for a population mean.

Answered: 1 week ago