I have a requirement to set a test machine which utilises automatic proxy configuration using a WPAD.DAT file. This is to replicate a customer environment (that we can't use for testing) so we may develop a fix for one of our software packages.
I have no problem with AD / IIS / Proxy's etc, however I know next to nothing about automatic configuration script and how to correctly set it up.
My current setup is a follows:
1 x IIS which is hosting a wpad.dat file
1 x windows 7 unit, in internet options I've selected use automatic configuration script and pointed the address field to the wpad.dat file via the HTTP address. IP settings are static with only a static IP, valid subnet and internal DNS server setup. (No gateway)
My wpad.date file is :
function FindProxyForURL(url, host)
{ if (isPlainHostName(host))
return "DIRECT";
else
return "PROXY 192.168.10.103:808";
}
The proxy server is CCProxy which works fine when I point Internet Explorer 'proxy server' settings to it.
When I browse any page on my lab machine the browse fails. The proxy server does not receive any hits. Wireshark running on the proxy server also does not register any communicate from this IP.
What do I need to do different to setup this test on one machine?