Tagged Questions

A proxy auto config file (PAC) is used by a web browser (or other agent) to choose the proxy server to be used using the specified URL as a criteria for the selection.

learn more… | top users | synonyms

10
votes
6answers
757 views

Recommended structure for high traffic website

I'm rewriting a big website, that needs very solid architecture, here are my few questions, and pardon me for mixing apples and oranges and probably kiwi too:) I did a lot of research and ended up ...
6
votes
6answers
6k views

Examples of Hierarchical-Model-View-Controller (HMVC)?

I'm interested in the Presentation-Abstraction-Control? (aka Hierarchical-Model-View-Controller (HMVC)) Architectural Pattern for constructing complex user interfaces (GUI or web) and was wondering if ...
4
votes
3answers
3k views

Debugging autoproxy (PAC) javascript with alert()?

I am writing a custom .pac script for use with Firefox. Following numerous examples I've seen, I intersperse alert()s in order to debug it, but no alerts popup, even though the script is clearly being ...
3
votes
1answer
2k views

How To Authenticate Socks 5 Proxies Inside PAC (Proxy Auto Config) Files

How can you setup PAC files to use SOCKS proxies with authentication? Using this simple PAC file as an example: function FindProxyForURL(url, host) { return "SOCKS 69.123.133.75:7257;"; } How ...
2
votes
1answer
113 views

javascript get my local LAN ip address

I have quite happily set up pac files using myIpAddress() as a function to resolve the local IP on my LAN to load balance my proxies. I now need to use this function, or anything that works simply, ...
2
votes
1answer
265 views

Whats the convention on URL-structure in MVC/HMVC/PAC pattern?

In MVC its like http://www.yourdomain.com/sampleController/sampleAction/ and if you call just /sampleController/ then /sampleController/indexAction/ and if you just call / then ...
2
votes
0answers
423 views

Handling large pac files in C# HTTPWebRequest

I currently have a C# application which makes frequent web requests that have to potentially go through proxy authentication. In this situation, a large PAC file (200kb+) is used to automatically ...
2
votes
1answer
175 views

IsInNet for ASP

First Post. So I am working on a project due to some drawbacks to the abilities of a standard PAC file. Basically we need to route proxy rules based on the internal subnet of the requester. ...
2
votes
1answer
156 views

Where in Windows is the Javascript file which contains functions for executing PAC files?

Proxy Auto Config (PAC) is the traditional method by which web-browsers are automatically configured to use the appropriate proxy for any given site. PAC files consist of a single function implemented ...
1
vote
2answers
225 views

Is it possible to run APC on PHP 5.3.6/IIS/Windows 2008?

The problem is that no binary I could find worked, the APC section never appears in the info display and the apc monitor states that APC is not running. Is there a way to make APC + PHP + IIS work? ...
1
vote
1answer
245 views

Presentation-abstraction-control explanation

I am looking for a paper that would explain the PAC pattern well. So far all the stuff that I found is pretty sporadic. If there is an implementations of this pattern somewhere out there, that would ...
0
votes
0answers
24 views

Using a local proxy auto configuration (.pac) file for proxy settings from a chrome extension

I want to modify the proxy settings of chrome using an extension. I want it to use a local .pac file which is present in my extension's root folder. I tried following ways to refer this pac file: ...
0
votes
0answers
39 views

webex & gotomeeting (Cisco & Citrix) failure to launch proxy.pac

This is a hint for users of webex or gotomeeting, gotoassist, citrix ICA etc. If you use a proxy.pac file you may need to add a specific entry in your pac file to direct the website to your proxies. ...
0
votes
0answers
40 views

VBA Access - Set proxy with .PAC and Microsoft.ServerXMLHTTP6.0

I just wanna know if there's a way to use MICROSOFT.ServerXMLHTTP6.0 setProxy when the proxy data is set in a configuration file (.PAC). Thanks
0
votes
1answer
89 views

How to make Selenium pick my .pac file?

I am using Foxyproxy in Firefox and whenever I want to switch to my sandbox environment I use a .pac file. Life is good. But when I try to automate using a browser based testing utility like ...
0
votes
1answer
177 views

How to debug Htmlunit traffic with Fiddler using PAC (proxy auto-config)

I have an application using Htmlunit and need put Fiddler to intercept traffic, i read something about configure it via PAC (proxy auto-config) javascript file that comes with but i cant found the ...
0
votes
1answer
209 views

How to avoid 127.0.0.1 on myIpAddress() in .pac files

Any idea how to avoid myIpAddress() always returning 127.0.0.1, instead of actual the host IP address? Environment is Ubuntu 11.04 with Firefox 4.0.1. The standard answer on Wikipedia of removing ...
0
votes
1answer
320 views

Error using FiddlerCore with proxy auto config file (PAC)

I'm using the stock SampleApp included with FiddlerCore. Http traffic works fine. For Https traffic, I'm getting the following message from FiddlerCore: [Fiddler] Failed to read HTTPS request from ...
-2
votes
1answer
80 views

What is the different between PAC and MVC? [closed]

I have doubt about this two pattern, like MVC and PAC, which is more powerful for a web Application.