dik,
I just happened to see this in my logs too. Actually, I was doing some test and it appears that whenever I did a wget --spider
https://mail.example.com I would get a HTTP 500 error and I would see that error in my error log.
When I did a wget without the --spider paramter I didn't see that error.
Code:
$ wget --spider https://mail.example.com
Spider mode enabled. Check if remote file exists.
--2011-05-27 13:31:21-- https://mail.example.com/
Resolving mail.example.com... 172.16.10.145
Connecting to mail.example.com|172.16.10.145|:443... connected.
HTTP request sent, awaiting response... 500 Illegal to call getOutputStream() after getWriter() has been called
--2011-05-27 13:31:23-- (try: 2) https://mail.example.com/
Reusing existing connection to mail.example.com:443.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: `index.html'
[ <=> ] 10,586 --.-K/s in 0s
2011-05-27 13:31:23 (60.4 MB/s) - `index.html' saved [10586] Code:
$ wget https://mail.example.com
--2011-05-27 13:33:17-- https://mail.example.com/
Resolving mail.example.com... 172.16.10.145
Connecting to mail.example.com|172.16.10.145|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: `index.html'
[ <=> ] 10,586 --.-K/s in 0s
2011-05-27 13:33:18 (60.3 MB/s) - `index.html' saved [10586]