Table of Contents
This practical session will enable you to explore important concepts regarding the Web:
We will first explore the HTTP protocol by using a good old program called telnet, that can connect on any port service by just providing the port number as an argument on the command line. This will let us see what is normally hidden by a standard Web browser: actual request and server responses, before being handled by a graphical end-user browser.
![]() | Exercise 1.5. HTTP POST |
|
Describe the difference between Exercise 1.4 and the following (do not forget to reset the <variable>Content-length</variable> according to the total length of the request character string, e.g: ): % telnet bioweb.pasteur.fr 80 Trying 157.99.64.11... Connected to rosalind.sis.pasteur.fr. Escape character is '^]'. POST /cgi-bin/seqanal/pdbsearch.pl HTTP/1.0 Content-type: application/x-www-form-urlencoded Content-length: 35 email=YOUR_EMAIL&query=1crn | |