- 论坛徽章:
- 0
|
我想请问一下,在Web网页的交互中从tcp连接的角度它们都进行了哪些数据的交
互。比如
在csapp中,作者举的一个小例子:
--------------------------------------------
unix> telnet www.aol.com 80 Client: open connection to server
1
Trying 205.188.146.23... Telnet prints 3 lines to the terminal
2
Connected to aol.com.
3
Escape character is ’ˆ]’.
4
GET / HTTP/1.1 Client: request line
5
host: www.aol.com Client: required HTTP/1.1 header
6
Client: empty line terminates headers.
7
HTTP/1.0 200 OK Server: response line
8
MIME-Version: 1.0 Server: followed by five response headers
9
Date: Mon, 08 Jan 2001 04:59:42 GMT
10
Server: NaviServer/2.0 AOLserver/2.3.3
11
Content-Type: text/html Server: expect HTML in the response body
12
Content-Length: 42092 Server: expect 42,092 bytes in the
response body
13
Server: empty line terminates response
headers
14
<html> Server: first HTML line in response body
15
... Server: 766 lines of HTML not shown.
16
</html> Server: last HTML line in response body
17
Connection closed by foreign host. Server: closes connection
18
unix>
19
------------------------------------------------
这说明服务器发回了一个静态网页的内容,并且没有保持状态,也就是说下次连接
服务器并不知道有这次连接。
那么,如果该网页上有一个按钮button,我们按下它,浏览器会向服务器发送什么数据呢?
如果是GET方法,那么它是在URL中有信息的,如果是POST呢,请熟悉之方面的同学讲一
下这个具体的过程,或者推荐
一个这方面的参考资料吧。
比如说,我用一个c++程序来模拟用户点击,应该向服务器发送什么数据呢? |
|