Hello,
I have a proxy with PAC file via DHCP WPAD. Fiddler (v4.4.9.9 running on Windows 8.1) works well, except for a specific URL, "http://my.company.com/Tests/123456789ABCDEF.txt".
This URL is specified in the PAC file, which is
Any idea what could cause it?
Thanks!
PS: original URLs modified but maintained characteristics.
I have a proxy with PAC file via DHCP WPAD. Fiddler (v4.4.9.9 running on Windows 8.1) works well, except for a specific URL, "http://my.company.com/Tests/123456789ABCDEF.txt".
This URL is specified in the PAC file, which is
function FindProxyForURL(url, host){ if (url=="http://my.company.com/Tests/123456789ABCDEF.txt" || shExpMatch(url, "*://my.company.com/Support/*") || shExpMatch(url, "*://my.company.com/MF/*") ) return "DIRECT"; else if (host=="www.company1.com" || host=="my.company.com" || host=="www.company3.com" || host=="www.company4.com" || host=="s3.amazonaws.com") return "PROXY 192.168.0.2:8888"; else return "DIRECT";}Any idea what could cause it?
Thanks!
PS: original URLs modified but maintained characteristics.