in reply to Re: Re: direct connection works, proxy does not.
in thread direct connection works, proxy does not.
I work for a company that makes transparent proxy software. Microsoft's proxy products don't behave in the manner that other proxies do. When we have issues with our proxy breaking things, we sniff the network and watch the request come though. Some proxies are extremely sensitive to HTTP requests, and require special formatting of HTTP headers to work correctly. For instance, here's a typical HTTP request from an average program:
This code will fail on most proxies because proxies require an additional header. So the following request will work on most proxies:GET www.google.com/index.html HTTP/1.0
Now this works on virtually every proxy. Except WinProxy. WinProxy requires an additional header, as well as browser identification, so the same request would look like this:GET /index.html HTTP/1.0 Host: www.google.com
Aparently the session management part of WinProxy is severely lacking.GET / HTTP/1.0 Host: www.google.com User-agent: Mozilla/4.7 Remote-Host-Wp: 10.0.3.82
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
OT: I'm glad you ranted
by footpad (Abbot) on Feb 03, 2001 at 09:03 UTC |