Closed
Bug 169128
Opened 22 years ago
Closed 22 years ago
PAC: automatic proxy configuration failover
Categories
(Core :: Networking, defect)
Tracking
()
People
(Reporter: Luca.Broglio, Unassigned)
Details
The Browser cannot move to another proxy server defined in the "automatic proxy
configuration file" if the first is not available. The Browers gives an alert:
"The connection was refused when attemping to contact <website address>".
Netscape 4.7x and Internet explorer 5.5 work well.
Comment 1•22 years ago
|
||
*** This bug has been marked as a duplicate of 84798 ***
Status: UNCONFIRMED → RESOLVED
Closed: 22 years ago
Resolution: --- → DUPLICATE
Summary: automatic proxy configuration → PAC: automatic proxy configuration failover
VERIFIED/dupe.
Luca: if you can, please post a sample PAC file in this bug (if it is long, you
can put just the fragment that doesn't work).
Status: RESOLVED → VERIFIED
QA Contact: benc → pacqa
(from email)
function FindProxyForURL(url, host)
{
if (isPlainHostName(host) ||
dnsDomainIs(host, ".domain1.it") ||
dnsDomainIs(host, ".domain2.it") ||
dnsDomainIs(host, ".domain3.it"))
return "DIRECT";
else
return "PROXY 127.0.0.2:3128; PROXY 127.0.0.227:8080; PROXY
127.0.0.9:3128";
}
You need to log in
before you can comment on or make changes to this bug.
Description
•