On 14/05/2012 7:42 p.m., Clem wrote:
Hi Amos,
Thx for your answer.
I'm still searching why my solution works with XP and only when I change 2 settings (lanmanager level, and disable msstd) on Windows7.
So I use a cache.log with debug options to analyze more precisely, to see the difference between these two OS.
When that doesn’t work on windows7, the request is "stuck" on RPC_OUT_DATA with a 200 success HTTP, sort of time out, and no infos, I've sniffed all I can, and nothing ...
The only thing I can see in logs is the cookie header and the pragma "sessionid" on windows7. In XP there is no cookie header and pragma is "no-cache" only, no other values.
Hmm. Hanging usually means something somewhere is waiting expecting data
somewhere.
Could be an HTTP object sent with wrong body size. Or another side
channel somewhere expected to be working but not operating. Things like
unexpected side channels seem to happen a lot with MS software IME.
Also, request_header_replace requires a previous "request_header_access deny ..." giving permission to remove existng header details before it can replace the content.
Thx for this info, I'll test it today.
If I write :
request_header_access Cookie deny all
request_header_replace Cookie none
Does this disable cookie header ?
It erases all existing Cookie values and creates the header "Cookie: none".
Amos