I'm also having a problem with Proxy PAC files I was hoping someone might be able to help me with?
My PAC file is located in C:\proxy.pac and both Firefox and Opera work perfectly but IE8 fails, any ideas?
function FindProxyForURL(url, host)
{
//Declare proxy strings as variables
if (isInNet(myIpAddress(), "10.242.0.0", "255.255.0.0")) { return "PROXY 10.242.163.88:8080"; }
else
return "DIRECT";
}