proxy

SSL with proxy (https)

Hey, I was wondering if When using PROXY, does SSL (through HTTPS) secure the connection from the admins of the proxy, so they will not be able to see the content? ...

Django and Akamai EdgeCache

Has anyone used Akamai's EdgeCache in front of a Django-based application? Is there anything specific needed in terms of configuration/middleware on the Django side to ensure Akamai is fully utilized? ...

How to make maven use system proxy settings

I'm using Ubuntu with Gnome where I can set network proxy settings (with authentication). The question is: how I can run maven in command line and make it use this proxy? ...

Monodevelop Proxy Settings

How do I set the proxy settings of Monodevelop? I tried to modify the Monodevelop.exe.config with the following code <system.net> <defaultProxy useDefaultCredentials="true"> <proxy proxyaddress = "http://172.0.0.18:8080" bypassonlocal = "true"/> </defaultProxy> </system.net> ...

wcf client through proxy

hay all. maybe you have an answer i have a client that need to go to my service but he is using proxy server, i have problem with the ssl connection. i have read a lot of answers, but what do i have to use in the end? <system.net> <defaultProxy useDefaultCredentials="true" > </defaultProxy> </system.net> or something else ? thank...

php - socks proxy

Hi, For the past fifteen day I'm breaking my head to solve this issue. I have a PHP application which connects to a remote mysql server, but the application can't directly access the remote mysql server, it has to connect through a socks proxy. Please could anyone help me to solve this issue. Thanks in advance. ...

Suddenly can't cast IWebProxy to WebProxy

I have some code that creates an IWebProxy and then casts it to a WebProxy. I ran my program and it worked. Then I inserted a break point and it all of a sudden stopped working and gives me the error: "Unable to cast object of type 'WebProxyWrapperOpaque' to type 'System.Net.WebProxy'." Another thing is that we use this method in 2 othe...

Windows 7 Virtual machine .Net Webclient System.Net.WebException: The remote server returned an error: (407) Proxy Authentication Required.

What may cause System.Net.WebException: The remote server returned an error: (407) Proxy Authentication Required. Windows webclient on Windows 7 virtual machine WebClient client = new WebClient(); client.DownloadFile(Uri, "test.html"); // fails string html = client.DownloadString(Uri); // fails I can't see a...

Python socket module: http proxy

Hello I'm trying to use protected http socks server with socket module as in the code shown below >>> import socket >>> s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) >>> host = 'http://user:[email protected]' >>> port = 8888 >>> s.bind((host, port)) It gives me error: socket.gaierror: [Errno -2] Name or service not known Th...

what is proxy server

What is proxy server exactly. What its purpose ? ...

system.net default proxy c# .Net 4

Hi I have some c# code (.Net 4) that makes calls to the Internet to get an XML file, however there is a long delay the first time the code block is hit! by adding the below to the app.conf the problem is resolved. However what I would like to do is check if there is a proxy uesd/set and if not then in code before each call turn off th...

Is it possible to use C# FTPWebRequest through a FTP proxy?

As I understand it, the FTPWebRequest.Proxy property denotes an HTTP proxy. I have to issue FTP requests to an external server via an FTP proxy. The only way I've got this to work so far is by creating a script which uses the Windows FTP command and downloading that way. Is it possible to use the FTPWebRequest to download files via an ...

How do I display the system's default http proxy

Hi I want to get the default system web proxy and display the resulting proxy address and port for http in a text box. IWebProxy oProxy = System.Net.WebRequest.GetSystemWebProxy(); //to get default proxy settings oProxy.Credentials = CredentialCache.DefaultNetworkCredentials; Uri targetserver = new U...

Java proxy connection

Im connecting to a proxy and then from the proxy i connect to the server i want. Sometimes the host that the proxy is connected to disconnects and I don't know that happens. Is there something i can send to the proxy server that will tell me if it is connected to the server or not? Or is there a message that the proxy sends to me if it d...

Removing SOCKS 4/5 proxy

This question is sort of the opposite of this: http://stackoverflow.com/questions/2317849/how-can-i-use-a-socks-4-5-proxy-with-urllib2 Let's say I use a SOCKS 5 proxy using the method accepted in that question. How would I revert it back to no proxy in the same process? i.e start process use proxy .. remove proxy ... Maybe there is ...

HTMLUnit how to check if proxy is working properly

Do you know what can I do to check if proxy in WebBrowser is working properly? ...

Nodejs proxy script, not working with mod_deflate

Hi Folks, I created a little proxy node script, which looksup the request.url and either passes a request to my apache server or uses node to process/response to this request. I have been successful so far, everything works fine, but when I enable mod_deflate for the apache, "strange things will happen". It looks like node just "cancel...

Using delphi to block websites

I Program my local schools program launcher which allows students to get on the internet with an randomly generated key provided by a teacher. This is done by changing the proxy in Internet explorer to the one needed for the internet and the wb filter. With the schools website and learning resources gradually moving to offsite hosting t...

I'm looking for a library that implements an HTTP proxy. Does it exist?

I need a native HTTP proxy library. Ideally, something that would let me specify the ports to listen on, and would call me back when requests arrive. Does such a thing exist? Ideally, it would work on Windows & Linux platforms. ...

'Aborted' status in firebug Net panel with netcat proxy

Hi, For front-end debug purposes, I've set a netcat proxy in order to intercept HTTP requests, eg: $ mkfifo /tmp/backpipe $ while true; do nc -vv -l -k 12345 < /tmp/backpipe | tee -a requests.in | nc localhost 80 | tee -a requests.out > /tmp/backpipe; done It works great but, in firebug, when accessing my web application on port 1234...