Forcing traffic to a proxy server

  • Thread starter Thread starter Russ Ferrill
  • Start date Start date
R

Russ Ferrill

Hello All!

I'd like to be able to force all outbound traffic to a proxy server without
relying on the browser's proxy server configuration. I'm not using Microsoft
ISA server or Microsoft Proxy server, so I can't use their built-in facility
to do this. Is there a way to accomplish this using the .NET Framework or
will I have to use unmanaged code? Can somebody point me in the right
direction Thanks in advance!

Russ
 
You want to proxy the web browsers HTTP requests transparently? You should
search on MSDN for proxy autoconfiguration. Using this mechanism, you can
setup a server such that the browser will query that server for the proxy to
use, and you can control which proxy gets used.

IE supports getting proxy URLs through autoconfiguration scripts that can be
served from HTTP servers. It can discover these servers using DNS, DHCP, or
even a hardcoded address in the proxy settings dialog box.
 
Back
Top