proxy

Not able to connect to TFS Server from TFS Proxy

In our office we have setup TFS for project development. The TFS Server is WIN 2003 server SP2 with VSTFS 2008 and is running fine. Now we need to setup a TFS Proxy server on client site for client to access. Before going for the client setup, I wanted to build and test proxy in our office on a dummy server (will call it Proxy server her...

How to make dynamically generated .net service client read configuration from another location than *.config files

Hi, I've currently written code to use the ServiceContractGenerator to generate web service client code based on a wsdl, and then compile it into an assembly in memory using the code dom. I'm then using reflection to set up the binding, endpoint, service values/types, and then ultimately invoke the web service method based on xml config...

Java RMI Proxy issue

I am getting this error: java.lang.ClassCastException: $Proxy0 cannot be cast to rmi.engine.Call at Main.main(Main.java:39) My Abstract and Call class both extend Remote. Call: public class Call extends UnicastRemoteObject implements rmi.engine.Abstract { public Call() throws Exception { super(Store.PORT, new R...

Finding an HTTP proxy that will intercept static resource requests

Background I develop a web application that lives on an embedded device. In order to make dev times sane, frontend development is done using apache serving static documents, with PHP proxying out to the embedded device for specifically configured dynamic resources. This requires that we keep various server-simulation scripts hanging aro...

Nibernate, DynamicProxy, and Spring AOP

We have an Spring IOC managed application that uses NHibernate in its persistence layer. We have use the Spring AOP and understand its terminology and capabilities. We have some investment in Spring proxies. Now, we want to add a PropertyChangedMixin and a ValidatorInterceptor (not nhibernate validator, but based on Spring validation) ...

Proxy support in VB.Net

I'm running the following code to check for updates in my software, and I wonder whether VB.Net will automatically user computer proxy settings: Dim CurrentVersion As String = (New System.Net.WebClient).DownloadString("URL/version.txt") If not, how can I adapt it to use proxy settings? ...

ant scp task through a proxy

I am trying to make an ant build file to remote copy a war file. Ant scp task uses a jsch library for remote copying. How do I make it work through a proxy, the jsch library clearly supports it. does not work for jsch. Jsch does not read environment variables like http_proxy is there another solution ? ...

urllib and proxies

Hello, I need in using Tor+Privoxy with my python-script. proxies = { 'http' : '127.0.0.1:8118', 'ssl' : '127.0.0.1:8118', 'socks' : '127.0.0.1:9050' } The first question: is the 'socks' name right? Maybe there should be something like 'socks5'? The next step is that I should pass user-agent string with this proxies to...

Proxy problems when adding Service Reference in VS 2010

Hi everyone, I was able to add a Service Reference in VS2008 with no problems at all. However, on the same machine within the same network, I couldn't do that in VS2010. It got a (407) response, Proxy Authentication Required. Has anyone else encountered this problem before? Are there new settings in VS2010 that need tweaking? Thanks, ...

How can I set or clear the proxy server used by a Windows Mobile device?

I want to programatically configure the proxy settings for the wifi network on my Windows Mobile phone. Does anybody know how to do that using the .net compact framework? ...

How to test a .net application against a proxy?

I need to support the use of proxy on our application that is using WCF connections. We do not have any proxy server on our network and I don't want to disrupt our corporate network by requesting a proxy installation. I was thinking of installing a proxy server on a local virtual machine and configurating Internet Explorer so that it wi...

Can access maven repository from behind proxy, need help.

I am trying to access maven repository from behind proxy. I configured settings.xml correctly (i guess so...) <proxies> <proxy> <active>true</active> <protocol>http</protocol> <username>username</username> <password>password</password> <host>12.34.56.78</host> <port>8080</port> </proxy> ...

How can I acquire an aggregated list of known proxy IP addresses?

I'd like to use this to help maintain a good defence against people trying to skirt the rules of my system. I've found TOR endpoints, nothing that's readily available to be shot into a script (needs to be parsed) but they work. However I need a list which goes beyond TOR yet I cannot find anything conclusive just yet. Any suggestions wo...

Unable to query proxy "Automatically Detect Settings" on windows 7

Hi, I am trying to capture proxy setting ("Automatically Detect Settings"). My code works on XP and Vista. But it is NOT working on Windows 7 Please see the details of target platform Windows 7 Enterprise, IE 8.0.7600.16385, Wininet.dll 8.0.7600.16535 Please see the code snippet INTERNET_PER_CONN_OPTION_LIST List; INTERNET_PER_CONN_...

White space problem while using php proxy

Hi, I'm using a php web proxy with my URL already encoded and keep having getting a malformed request error once I have any text after a %20. Any idea why this would be happening? The web proxy code I'm using is just a sample that I took from yahoo services: <?php // PHP Proxy example for Yahoo! Web services. // Responds to both HTTP...

Enable Proxy Authentication for normal windows application.

my company's internet works on proxy server with Authentication(i.e. Browser prompts with window for username/password everytime i tried to access any web page). Now i have some windows application which tries to access internet(like WebPI/Visual Studio 2008 for rss feeds), but as they are unable to popup the the authentication window, ...

C# - how to test if proxy is working or not?

Hi there, I´ve got a pretty big list with proxy servers and their corresponding ports. How can I check, if they are working or not? ...

slsvcutil.exe Proxy and Interfaces

Is it possible when using slsvcutil.exe to generate a proxy through the command line not to have the proxy file output the Interface in an Asynchronous fashion. For example, if I have a function "foo()" on the serverside in the Interface, when I generate the proxy using Slsvcutil.exe, it makes two functions in the interface definition i...

How can I use Apache to reverse proxy a dynamic url

I want a user to be able to load a url in their browser, but not get redirected: http://example.com/abc/{var1}/{var2}/def I want the example.com apache 2.2 server to take that request, and "invisibly" and without redirect reverse proxy it to: http://other.example.com/abc/{var1}/{var2}/def I have spent hours trying different combina...

Webdriver and proxy server for firefox

Hi, are there any ways to set firefox's proxy settings? I found here information about FoxyProxy but when Selenium works, plugins are unactivated in window. ...