Questions tagged [autoproxy]

18 questions
40
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
  • 3,968
  • 8
  • 39
  • 62
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
11
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
  • 33,647
  • 22
  • 66
  • 90
6
votes
1 answer

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
  • 439
  • 1
  • 4
  • 10
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
  • 555
  • 1
  • 10
  • 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…
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
  • 699
  • 7
  • 19
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
  • 9,930
  • 22
  • 87
  • 134
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
  • 20,782
  • 5
  • 75
  • 102
1
vote
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…
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

Auto Proxy PAC File in iOS

Please help me with this In iOS, if we set proxy to be auto and url to be https://www.youtube.com. When I open browser to open a page it's working fine which I'm not able to figure out why ? since I gave the wrong pac file url so ideally it…
Madhu Avinash
  • 764
  • 1
  • 5
  • 24
1
2