or
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"
;
}
When I attempt to browse to one of my company's websites with Fiddler running, I get the following error on the CONNECT:
fiddler.network.https> HTTPS handshake to site.mycompany.com failed. System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host
Fiddler is running under the administrator account and can access most other HTTPS sites (ie, Outlook, Facebook, other company sites). Things I've tried:
Any ideas?