[plt-scheme] Problem with Post-Redirect-Get in FireFox

From: Jens Axel Søgaard (jensaxel at soegaard.net)
Date: Thu Aug 9 14:33:23 EDT 2007

Vladimir Zlatanov skrev:
> what headers do you get if you simulate a post? You could inspect them 
> with one of the many developer extensions in firefox.

Thanks for the suggestion. I installed the FireFox Plugin LiveHTTPHeader
and recorded this session. One thing strikes me as odd, and that is the
the Last-Modified date for the 303s all have the same time.

Here is a session:


1) First I open the frontpage succesfully:

http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive

HTTP/1.x 200 Okay
Date: Thu, 09 Aug 2007 17:22:37 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------

2) Then I submit one of the forms, which results in a POST.
Which results in a redirect as expected.

----------------------------------------------------------
http://localhost:8083/servlets/control.scm

POST /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm
Content-Type: application/x-www-form-urlencoded
Content-Length: 37
arrowitem=up&entry_id=1&action=updown

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 384
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------

3) Now the browser should GET the page it was redirected to.
It turns out that it issuing a GET. To my surprise, the
response to this is an 303.

http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm
If-Modified-Since: Thu, 09 Aug 2007 17:19:03 GMT

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------

4) And now the thing simply loops

http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------
http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------
http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------
http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------
http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------
http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------
http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------
http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------
http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------
http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------
http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------
http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------
http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------
http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------
http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------
http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------
http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------
http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------
http://localhost:8083/servlets/control.scm

GET /servlets/control.scm HTTP/1.1
Host: localhost:8083
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; da; rv:1.8.1.3) 
Gecko/20070309 Firefox/2.0.0.3
Accept: 
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: da,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://localhost:8083/servlets/control.scm

HTTP/1.x 303 See Other
Date: Thu, 09 Aug 2007 17:22:56 GMT
Last-Modified: Thu, 09 Aug 2007 17:19:03 GMT
Server: PLT Scheme
Content-Type: text/html
Content-Length: 7304
Location: http://localhost:8083/servlets/control.scm
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
----------------------------------------------------------


-- 
Jens Axel Søgaard



Posted on the users mailing list.