Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: HTTP spy ?

From: rebol665:ifrance at: 9-May-2002 14:09

Thanks Tom, Pretty cool ! Now I can see what is sent by the browser. On the same subject, in order to know what the browser is getting back, I am using the following dialog at the rebol console :
>>pt: open tcp://192.168.1.51:80 >>insert pt "GET /cgi-bin/cgi-txt.r HTTP/1.0^/^/" >>print copy pt
HTTP/1.1 200 OK Date: Wed, 08 May 2002 13:36:30 GMT Server: Apache/1.3.24 (Win32) ...
>> close pt
I am wondering if it is possible to have both what is send by the browser and what the browser is getting back without interfering with the browser. A sort of tunneling that lets data go thru in and out. Patrick