SHARE
SPREAD
HELP

The Tradition of Sharing

Help your friends and juniors by posting answers to the questions that you know. Also post questions that are not available.


To start with, Sr2Jr’s first step is to reduce the expenses related to education. To achieve this goal Sr2Jr organized the textbook’s question and answers. Sr2Jr is community based and need your support to fill the question and answers. The question and answers posted will be available free of cost to all.

 

#
Authors:
Anne Boehm, Zak Ruvalcaba
Chapter:
How To Work With Images
Exercise:
Exercises
Question:1 | ISBN:9781890774837 | Edition: 3

Question

Consider the following string of ASCII characters that were captured by Wireshark when the browser sent an HTTP GET message (i.e., this is the actual content of an HTTP GET message). The characters are carriage return and line-feed characters (that is, the italized character string in the text below represents the single carriage-return character that was contained at that point in the HTTP header). Answer the following questions, indicating where in the HTTP GET message below you find the answer.

 

 

GET /cs453/index.html HTTP/1.1

Host: gai a.cs.umass.edu

User-Agent: Mozilla/5.0 ( Windows;U; Windows NT 5.1; en-US; rv:1.7.2) Gec ko/20040804

Netscape/7.2 (ax)

Accept:ex t/xml, application/xml, application/xhtml+xml, text /html;q=0.9,

text/plain;q=0.8,image/png,*/*;q=0.5 PROBLEMS 169

Accept-Language: en-us,en;q=0.5

AcceptEncoding: zip,deflate

Accept-Charset: ISO -8859-1,utf-8;q=0.7,*;q=0.7

Keep-Alive: 300

Connection:keep-alive

 

a. What is the URL of the document requested by the browser?

b. What version of HTTP is the browser running?

c. Does the browser request a non-persistent or a persistent connection?

d. What is the IP address of the host on which the browser is running?

e. What type of browser initiates this message? Why is the browser type needed in an HTTP request message?

TextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbook

Answer

a. What is the URL of the document requested by the browser?

The URL of the document is cs453/index.html.

b. What version of HTTP is the browser running?

The browser is running version 1.1 of HTTP.

c. Does the browser request a non-persistent or a persistent connection?

The browser requests a persistent connection. This is shown by the line “Connection:keep-alive.”

d. What is the IP address of the host on which the browser is running?

The IP address of the host on which the browser is running is gaia.cs.umass.edu.

e. What type of browser initiates this message? Why is the browser type
needed in an HTTP request message?

The type of browser that initiates this message is Mozilla 5.0 on Windows. The browser type is needed in an HTTP request message because different browsers may handle the same webpage differently, due to having different capabilities.

1 0

Discussions

Post the discussion to improve the above solution.