有什么软件或代码可以截获类似:POST http://www2.scuta.edu.cn/stu/chatroom/check.asp HTTP/1.0  Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, application/msword, */*  Referer: http://www2.scuta.edu.cn/stu/  Accept-Language: zh-cn  Content-Type: application/x-www-form-urlencoded  Proxy-Connection: Keep-Alive  User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)  Host: www2.scuta.edu.cn  Content-Length: 87  Pragma: no-cache  Cookie: ASPSESSIONIDQGGGQHHE=ABGNNOJCIGOFCDLBIOLHKAFK的 Http 头信息呢?谢谢!

解决方案 »

  1.   

    你要在哪里截获,在服务器段可以用ISAPI
      

  2.   

    gz,不知道和socket有没有关系。
    我想这个问题大概不需要分析数据包。
      

  3.   

    procedure Twebmodule1.webmodule1actioinItem1Action(......)
    var
     page:Tstringlist;
    begin
     page:Tstringlist.create;
    with page do
     add('method:='+request.method);
     add('remotehost':=request.remotehost);
     add('URL':=Request.URL);
     add('Cookie:='+request.Cookie)
      等等等等,全在在里边。
      

  4.   

    就在自己的机器上截获自己机器向服务器发出的 Http 命令.
    谢谢!