princepawn has asked for the wisdom of the Perl Monks concerning the following question:
I have observed this phenomenologically. I had the following simple webpage:
and IE would resume the download if I cancelled in the middle.<form action=file.zip> <input type=submit value="Download Now!">
However the following webpage:
did not result in IE making partial requests for the zip file even though the CGI program is returning the same MIME type as above and the file does download successfully. But for some reason, a partial request is not supported here.<form action=download.cgi?filename=file.zip> <input type=submit value="Download Now!">
I hypothesize that IE is not making a partial request but would like to ensure this by getting a printout of what HTTP is being sent to my webserver.
i was nearly successful with HTTPi A small webserver written entirely in Perl, but it only serves executables and HTML files.
I think I have seen various Perl HTTP sniffers around, but I couldn't find any in a websearch just now.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Software to Observe HTTP Transactions? (HTTP Sniffer?)
by Corion (Patriarch) on Apr 03, 2001 at 20:44 UTC | |
by merlyn (Sage) on Apr 03, 2001 at 20:50 UTC | |
|
(Ovid - packet sniffer) Re: Software to Observe HTTP Transactions? (HTTP Sniffer?)
by Ovid (Cardinal) on Apr 03, 2001 at 20:44 UTC | |
|
Re: Software to Observe HTTP Transactions? (HTTP Sniffer?)
by lachoy (Parson) on Apr 03, 2001 at 21:31 UTC | |
|
Re: Software to Observe HTTP Transactions? (HTTP Sniffer?)
by strredwolf (Chaplain) on Apr 03, 2001 at 23:49 UTC |