Questions tagged [autoproxy]

18 questions
41
votes
6 answers

Is there any way of configuring Eclipse IDE proxy settings via an autoproxy configuration script?

I am behind a firewall which uses autoproxy configuration script. I am able to browse the internet when I enable the autoproxy url in most browsers I use (IE 7, IE 8, FF, Chrome). For your reference to enable autoproxy url on Windows goto: Settings…
Vikram
  • 4,162
  • 8
  • 43
  • 65
18
votes
4 answers

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 invoked. (I am clicking "Reload" in the…
Chris Noe
  • 36,411
  • 22
  • 71
  • 92
16
votes
3 answers

Windows Azure Compute Emulator Error

I have Azure SDK 1.6, WIF, Nuget 1.5, Azure Mobile Toolkik, Visual Studio Ultimate 2010 sp1, Windows Phone SDK 7.1 and many other latest sdk. I tried two sample, the Tweet your blob from azure toolkit for wp7, and the following very basic sample…
SkyG
  • 275
  • 3
  • 11
8
votes
2 answers

TypeError: AutoProxy object is not iterable - multiprocessing

consider the following server code : from multiprocessing.managers import BaseManager, BaseProxy def baz(aa) : print "aaa" l = [] for i in range(3) : l.append(aa) return l class SolverManager(BaseManager): pass manager =…
pietro abate
  • 459
  • 1
  • 4
  • 10
4
votes
1 answer

How to extract multiprocessing queue elements without removing

I'm not able to extract a multiprocessing queue's elements due to AutoProxy error. Normal way extracting queue's elements without removing is to do - list(q.queue) where q-> queue object. Doesn't seem to work for MP queue. import multiprocessing as…
KungFuPanda
  • 55
  • 1
  • 6
3
votes
1 answer

AspectJ autoproxy issues with Spring Controllers and Webflow Actions

I have two related issues regarding spring/AspectJ AOP. I have a typical logger aspect which logs exceptions thrown from any class in my application including services, daos, controllers and webflow actions... @Aspect public class AspectLogger { …
Jay Shark
  • 635
  • 1
  • 11
  • 21
2
votes
1 answer

Opening browser with command line params

Im using Opera browser.I want to open the browser with one command line option by detault ie) whenever i open opera it should enable the option I am now opening my opera using opera --proxy-pac-url="http://hostname/autoproxy.pac" This auto proxy…
ArJun Kumar
  • 21
  • 1
  • 2
2
votes
2 answers

The function FindProxyForURL in pac (proxy-auto-config) file can not work in IE browser

we spent three days still could not solve a strange technical problem, so we need your help. The pac (proxy-auto-config) file we write is working fine in all other browser, except IE(Internet Explorer). the request url is…
EvanChen
  • 21
  • 1
  • 4
2
votes
1 answer

What's the difference between resolving WPAD in process and out of process?

In the WinHTTP autoproxy API, the WINHTTP_AUTOPROXY_OPTIONS will accept flags for WINHTTP_AUTOPROXY_RUN_INPROCESS and WINHTTP_AUTOPROXY_RUN_OUTPROCESS_ONLY. What's the difference between these two flags and when would you use them?
0x1mason
  • 757
  • 8
  • 20
2
votes
4 answers

How to set auto detect proxy settings in Selenium WebDriver using Java

Hi I am writing a Selenium WebDriver Java code/script. public static WebDriver dr =null; public static EventFiringWebDriver driver=null; dr = new FirefoxDriver(); driver = new EventFiringWebDriver(dr); driver.manage().timeouts().implicitlyWait(30,…
Raju
  • 137
  • 2
  • 4
  • 15
1
vote
0 answers

Register external @AspectJ aspects dynamically in main spring project

I'm currently tying to integrate external @AspectJ aspects into a Spring+JSF project. That is, my aspects are implemented in seperate projects and should be loaded into the main application context at runtime. This is working fine if I declare the…
Pete
  • 10,720
  • 25
  • 94
  • 139
1
vote
1 answer

system proxy setting detection fails

I have some misterious problem with system proxy detection: Actually, I have the right code to detect system proxy settings at runtime, it can handle pac files and http proxy settings as well. It works absolutely correct, when I store and execute…
Zsomi
  • 11
  • 2
1
vote
4 answers

Autoproxy configuration script parsing in .Net/C#

In order for my application (.Net 1.1) to use the system configured proxy server (trough a proxy.pac script) I was using an interop calls to WinHTTP function WinHttpGetProxyForUrl, passing the proxy.pac url I got from the registry. Unfortunately, I…
Sunny Milenov
  • 21,990
  • 6
  • 80
  • 106
1
vote
0 answers

Using multiple AutoProxyCreator for the same objects

I am using Spring.Net for IOC and AOP. It seems Spring.Net does not support multiple AutoProxyCreators. I have following classes: [Facade] public abstract class AbstractFacade{ } [TransactionSupportFacade] public abstract class…
0
votes
0 answers

Proxy pac file doesn't work anymore in Chrome and Edge

I have a pac file hosted by my company server and it stopped working. We didn't made any change and the content is : function FindProxyForURL(url, host) { if (dnsDomainIs(host, ".mydomain.com")) { return "DIRECT"; } if (dnsDomainIs(host,…
1
2