A proxy is a device or program that stand between two or more interconnected programs/devices. Reasons for a proxy include one or more connected parties only wanting the other to access specific data. A proxy provides a method for this.

learn more… | top users | synonyms

60
votes
8answers
77k views

How do I pull from a Git repository through an HTTP proxy?

Note: while the use-case described is about using submodules within a project, the same applies to a normal git clone of a repository over HTTP. I have a project under Git control. I'd like to add a ...
46
votes
7answers
28k views

How do I update Ruby Gems from behind a Proxy (ISA-NTLM)

Firewall I'm behind is running Microsoft ISA server (NTLM only mode), anyone have success getting their Ruby gems to install/update via Ruby SSPI gem or other method? ... or am I just being lazy? ...
33
votes
14answers
11k views

Linux-alternative to Fiddler2

I have used Fiddler2 with great results on windows before, but now I have moved to using linux for development. The problem I have, is that I have not been able to find a decent replacement for ...
27
votes
7answers
23k views

Git error: fatal: unable to connect a socket (Invalid argument)

I've got msysGit (Git on Windows) working just fine on my home machine, but at work, where we are behind a Microsoft ISA proxy, I get the following error when I do a git clone: H:\>git clone ...
27
votes
6answers
23k views

Difference between proxy server and reverse proxy server

What is the difference between proxy server and reverse proxy server?
25
votes
2answers
29k views

Hibernate: Difference between session.get and session.load

From the API, I could see it has something to do with proxy. But I couldn't find a lot of information on proxy and do not understand the difference between calling session.get and session.load. Could ...
25
votes
5answers
31k views

How to create a simple proxy in C#?

I have downloaded Privoxy few weeks ago and for the fun I was curious to know how a simple version of it can be done. I understand that I need to configure the browser (client) to send request to the ...
22
votes
5answers
8k views

WCF ChannelFactory vs generating proxy

Just wondering under what circumstances would you prefer to generate a proxy from a WCF service when you can just invoke calls using the ChannelFactory? This way you wont have to generate a proxy and ...
20
votes
9answers
11k views

write HTTP Proxy in Java

How would I go about creating an HTTP Proxy in Java for use recording and playing back HTTP Sessions? This would be for entirely legitimate performance monitoring purposes. Are there any classes in ...
19
votes
15answers
40k views

Proxy which requires authentication with Android Emulator

Has anybody managed to get the Android Emulator working behind a proxy which requires authentication? I've tried setting the -http-proxy argument to http://DOMAIN/USERNAME:PASSWORD@IP:PORT but am ...
18
votes
5answers
10k views

How do I have to configure the proxy settings so Eclipse can download new plugins?

I am working with Eclipse 3.7, on an Windows XP environment behind a web proxy. I want to install the Groovy plugin on a newly unzipped Eclipse Indigo (Eclipse JEE Indigo M4). I added the update site ...
17
votes
3answers
13k views

How should I set the default proxy to use default credentials?

The following code works for me: var webProxy = WebProxy.GetDefaultProxy(); webProxy.UseDefaultCredentials = true; WebRequest.DefaultWebProxy = webProxy; Unfortunately, WebProxy.GetDefaultProxy() ...
15
votes
3answers
719 views

How to access dynamic proxies from eclipse network settings?

I am working on an Eclipse plugin which needs to connect to a remote server. I am trying to use the Eclipse network settings to get the proxyHost and Port. I have been able to get the "Manual" ...
15
votes
4answers
16k views

Is it possible to specify proxy credentials in your web.config?

I need to configure a website to access a webservice on another machine, via a proxy. I can configure the website to use a proxy, but I can't find a way of specifying the credentials that the proxy ...
14
votes
7answers
750 views

Calling COM visible managed component from managed code through COM wrapper

I have a 3rd party component, lets say FIPreviewHandler to handle preview, which implements IPreviewHandler. FIPreviewHandler is implemented as a Managed Component, and uses the IPreviewHandler ...
14
votes
6answers
10k views

Getting RAW Soap Data from a Web Reference Client running in ASP.net

I'm trying to trouble shoot a web service client in my current project. I'm not sure of the platform of the Service Server (Most likely LAMP). I believe there is a fault on their side of the fence ...
14
votes
9answers
24k views

How do I set the proxy to be used by the JVM

Many times, a Java app needs to connect to the Internet. The most common example happens when it is reading an XML file and needs to download its schema. I am behind a proxy server. How do I set my ...
13
votes
3answers
3k views

How can I use a SOCKS 4/5 proxy with urllib2?

How can I use a SOCKS 4/5 proxy with urllib2 to download a web page?
13
votes
4answers
17k views

Programmatically Set Browser Proxy Settings in C#

I'm writing an winforms app that needs to set internet explorer's proxy settings and then open a new browser window. At the moment, I'm applying the proxy settings by going into the registry: ...
12
votes
15answers
10k views

Why “Content-Length: 0” in POST requests?

A customer sometimes sends POST requests with Content-Length: 0 when submitting a form (10 to over 40 fields). We tested it with different browsers and from different locations but couldn't reproduce ...
12
votes
3answers
11k views

How do I find out the browser's proxy settings?

I am writing a command-line tool for Windows that uses libcurl to download files from the internet. Obviously, the downloading doesn't work when the user is behind a proxy server, because the proxy ...
11
votes
8answers
428 views

How to make a simple dynamic proxy in C#

I want to build a dynamic proxy object to add certain functionality to an object. basically i want to receive an object, wrap it with an object that looks identical to the original i got, and ...
11
votes
7answers
3k views

How can I use an http proxy with node.js http.Client?

I want to make an outgoing HTTP call from node.js, using the standard http.Client. But I cannot reach the remote server directly from my network and need to go through a proxy. How do I tell node.js ...
11
votes
12answers
7k views

Tunnel over HTTPS

At my workplace, the traffic blocker/firewall has been getting progressively worse. I can't connect to my home machine on port 22, and lack of ssh access makes me sad. I was previously able to use ...
11
votes
10answers
15k views

FTP File Upload with HTTP Proxy

Is there a way to upload a file to a FTP server when behind an HTTP proxy ? It seems that uploading a file is not supported behind an HTTP Proxy using .Net Webclient. ...
11
votes
4answers
5k views

How to specify an authenticated proxy for a python http connection?

What's the best way to specify a proxy with username and password for an http connection in python?
10
votes
1answer
260 views

How can I proxy a Java class with overloaded methods in Clojure?

For example, given a Java class like: public class Foo { public String bar(String x) { return "string " + x; } public String bar(Integer x) { return "integer " + x; } } How can I ...
10
votes
2answers
4k views

Trying to understand the “Vary” HTTP header

I use PHP to generate dynamic Web pages. As stated on the following tutorial (see link below), the MIME type of XHTML documents should be "application/xhtml+xml" when $_SERVER['HTTP_ACCEPT'] allows ...
10
votes
5answers
5k views

Best Practice for WCF Service Proxy lifetime?

When working with WCF services, is it better to create a new instance of the service every time you use it? Or is it better to create one and re-use it? Why is either approach better? Is it the ...
10
votes
4answers
8k views

How does Windows actually detect LAN (proxy) settings when using Automatic Configuration

When Windows Internet Properties -> Connections -> LAN Settings -> Automatic Configuration is set to "Automatically detect settings" how does Windows actually determine/discover what the settings are? ...
9
votes
3answers
282 views

How to set Http Proxy in an applet

For a java desktop application after we set these properties System.setProperty("java.net.useSystemProxies","true"); System.setProperty("http.proxyHost", "1.1.1.1"); ...
9
votes
3answers
2k views

Connecting to SVN server behind corporate firewall from home

How can I configure TortoiseSVN to connect to a SVN server behind a corporate firewall from home? This is the question I'm having a hard time finding an answer to. Here's what I DON'T have: ...
9
votes
3answers
4k views

Git through digest proxy authentication

I want to do "git clone" through a proxy server. The issue is my proxy server uses digest authentication. So i can't find neither in git documentation, nor help that someone that already made. I dig ...
9
votes
4answers
13k views

How can I set an HTTP Proxy (WebProxy) on a WCF client-side Service proxy?

How can I set the HTTP proxy programmatically, on a WCF client, without using the default proxy? Proxies, proxies, proxies. According to the WCF model of development, I generate client-side ...
9
votes
4answers
16k views

Getting git to work with a proxy server

How do I get git to use a proxy server? I need to check out code from a git server, it shows "Request timed out" every time. How do I get around this? Alternatively, how can I set a proxy server?
9
votes
8answers
24k views

svn over HTTP proxy

I'm on laptop (Ubuntu) with a network that use HTTP proxy (only http connections allowed). When I use svn up for url like 'http://.....' everything is cool (google chrome repository works perfect), ...
8
votes
3answers
284 views

Sending binary data over http

I am looking for suggestions on the best way to send/receive data from a remote GPRS device, over port 80. Creating a plain TCP socket on a random port works fine, but many carriers only allow port ...
8
votes
1answer
488 views

Hibernate Envers: Initializing Envers Proxies

In Hibernate Envers, all related collections of an entity are loaded lazy, regardless of what fetch type is set. So when auditquerying for entity that has a collection of other entities (both audited, ...
8
votes
2answers
1k views

.NET proxy detection

I am having an issue with .NET detecting the proxy settings configured through internet explorer. I'm writing a client application that supports proxies, and to test I set up an array of 9 squid ...
8
votes
2answers
4k views

Web site exhibits JavaScript error on iPad / iPhone under 3G but not under WiFi

Connecting to http://www.manage-us.com on an iPad under 3G [used to] result in a JavaScript error which can be seen if the developer console has been enabled. If the same page is accessed using the ...
8
votes
3answers
3k views

C# using Tor as Proxy

I am trying to use Tor-Server as a proxy in HttpWebRequest, my code looks like this: HttpWebRequest request; HttpWebResponse response; request = ...
8
votes
1answer
2k views

Emacs behind http proxy

Emacs is able to access the internet with packages such as url.el or the W3 web browser. Also, the Emacs Lisp Package Archive is heavily dependant on package url.el. Now, how do I configure Emacs to ...
8
votes
4answers
3k views

Ivy via Nexus proxy

does anyone knows how do I specify in Ivy something like mirror/mirrorOf in Maven? I'm working with a local Maven proxy (Nexus) and need the tool to specify which of the parent repositories should ...
8
votes
3answers
3k views

What's the recommended way to get winhttp.h?

Our application uses libcurl for HTTP, and we want to get access to Internet Explorer's proxy settings. An earlier Stack Overflow question recommends that we use WinHttpGetIEProxyConfigForCurrentUser ...
8
votes
4answers
14k views

Setting up an Apache Proxy with Authentication

I need to set up a proxy with authentication to verify the behavior of an application that connects to the internet. I am trying to set-up an Apache installation with forward proxy and ...
8
votes
4answers
3k views

How does Hibernate create proxies of concrete classes?

To the best of my knowledge, creating a dynamic Java proxy requires that one have an interface to work against for the proxy. Yet, Hibernate seems to manage its dynamic proxy generation without ...
8
votes
7answers
3k views

Can a proxy server cache SSL GETs? If not, would response body encryption suffice?

Can a (||any) proxy server cache content that is requested by a client over https? As the proxy server can't see the querystring, or the http headers, I reckon they can't. I'm considering a desktop ...
7
votes
4answers
3k views

How do I run Node.js on port 80?

My aim is to run Node.js on port 80. This is because I am finding node.js is being blocked from certain networks which do not allow traffic from any other port. It appears that the best way to do ...
7
votes
1answer
305 views

What happens when I close/abort a WCF channel/proxy?

I'm trying to get a better understanding of what's going on when I use a WCF proxy. I'm having trouble understanding what happens when I close (or don't close) a proxy. What's going on when I call ...
7
votes
3answers
267 views

What should I do when Delphi imports WSDL improperly due to a hyphen in an enum name?

I'm using Delphi and I'm using a wsdl file from another company to set up my proxy class to use their data from their web service. The wsdl file contains the following: <xsd:simpleType ...

1 2 3 4 5 54