http://qs1969.pair.com?node_id=181100


in reply to View browser's headers
in thread HTTP Headers Problem

There is also the utility from Mozilla here:

http://webtools.mozilla.org/web-sniffer/

And a nice "bookmarklet" to use the same utility here:

http://www.squarefree.com/bookmarklets/validation.html#http_headers

Replies are listed 'Best First'.
Re: Re: View browser's headers
by gr0f (Acolyte) on Jul 11, 2002 at 19:04 UTC
    Excellent! In examining what IE and Mozilla create, I was able to indentify exactly what was the problem in the header.
    POST http://www.environet.gov.on.ca/dwws-app/DWWSApp?cmd=UploadSubmPag +e.uploadSubm Content-Encoding: form-data Content-Length: 3059 Content-Type: multipart/form-data; boundary=xYzZY --xYzZY Content-Disposition: form-data; name="works_id" 300002167 --xYzZY Content-Disposition: form-data; name="lab_id" 48 --xYzZY Content-Disposition: form-data; name="filename"; filename="260015626-2 +20006440.txt" Content-Length: 2769 Content-Type: text/plain
    It seems that neither browser states the Content-Length for just the file disposition, but do for the whole transaction at the beginning. In other words, the second last line shouldn't be there at all. This makes sense in accordance with the rather ambigous error message that I got. Final question: how do I turn this off? Thanks for all your help guys!