proxy

C# Proxy Help - Urgent

I have the following code: int repeat = 1; int proxyIndex = 1; if (listBox1.Items.Count == proxyIndex) //If we're at the end of the proxy list { proxyIndex = 0; //Make the selected item the first item in the list } try { int i = 0; while (i < listBox1.Items.Count) { HttpWebRequest request = (HttpWebRequest)WebRequest.Create(...

Objective-C Soap Proxy Generator similar to whats in .NET

Hi, We have a contractor doing an Iphone native app in objective-c. They need to call some of our web services to get data. Is there some kind of proxy generator for obj-c that will create native objects that call web services? C#/.NET has this built in--you just add a service reference in visual studio or you use a command line tool...

.NET Proxy Support - HTTPWebRequest

Okay I need help, again! For some reason it is not working, no idea why.. nothing even appears on my catch request.. public void load(object sender, DoWorkEventArgs e) { int repeat = 1; int proxyIndex = 1; if (listBox1.Items.Count == proxyIndex) //If we're at the end of the proxy list { pr...

Streaming local file from PHP while it's been written to by a CURL process

I am creating a simple Proxy server for my website. Why I am not using mod_proxy and mod_cache is a different discussion. Here's the code: shell_exec("nohup curl --create-dirs -o {$write_path} {$source_url} > /dev/null 2> /dev/null & echo $!"); sleep(1); $read_speed = 65.5; # 65.5 kb/s download rate $handle = fopen($wri...

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 Fiddler2 that will run on linux. I have tried Wireshark, but it is perhaps too generic in what it does, and I can never really make any sense of...

Nginx Proxy to Files on Local Disk or S3

So I'm moving my site away from Apache and onto Nginx, and I'm having trouble with this scenario: User uploads a photo. This photo is resized, and then copied to S3. If there's suitable room on disk (or the file cannot be transferred to S3), a local version is kept. I want requests for these images (such as http://www.mysite.com/p/1_1....

Connect to BitBucket via proxy

Hoi, I try to hg pull from my private repo on Bitbucket.org into my local repo on my Windows machine from behind the company proxy that requires Windows authentication. I found the proxy server and port (Internet options of IE) I found the settings Mercurial.ini file in my %USERPROFILE% I added this section to it (info): [http_prox...

AppEngine fetch through a free proxy

My (Python) AppEngine program fetches a web page from another site to scrape data from it -- but it seems like the 3rd party site is blocking requests from Google App Engine! -- I can fetch the page from development mode, but not when deployed. Can I get around this by using a free proxy of some sort? Can I use a free proxy to hide the...

How to build "Auto Detect Proxy Settings" In Windows and in Mac

What are the steps to implement that feature in 1) Windows and 2) in Mac? I went through these, still I am not very clear! I am using C/C++ in Windows and in Mac. So, Win API or Mac API will be enough. I am also confused because Mac Firefox has also has a option "Use system proxy settings", which is not present in Windows Firefox. Thes...

Changing Urls on ASP.NET form with Master pages

We've had a requirement from a client to move a site that is running on it's own domain to a subfolder of another app. I've acheived this using ISAPI rewrite proxying. However, there is one form that does a post back in the site. The generated url for the action from ASP.NET is "/sign-up.aspx?". This sends the postback to the root of t...

can I use curl as a proxy server and will it use my bandwidth?

I'm pretty sure there's a way to use curl in php to make a proxy server so my question is more, will that use my bandwidth? if there is a way to have it not use my bandwidth how would that look? ...

Additional server between closed source client/server that does same requests but does not change data

I have the following setup: Closed-source Client A where I can set the IP of B Closed-source Server B, fixed IP Server C, written by me A communicates with B over HTTP. I've cloned the API and implemented it myself in C, as I am interested in the data, but I still require A to talk to B, which is why I can't just let the client conne...

Is it safe to use proxies?

hi! i'm using php curl's proxy feature to sign in to a site. I wanna know whether this is safe or not. Can the proxy site "hack" my usename and password? I don't, actually can't, encrypt my password before sending it to the proxy server. EDIT: The scenario is like this: I'm trying to scrape data from a members-only page. I sign-in wit...

How to use Http, Socks4 and Socks5 proxies in java?

I want to screen-scrape a website and for that I want to use Http, Socks4 and Sock5 proxies. So my questions are as follows: Is it possible to use these proxies through Java without using any other external API? For instance, Is it possible to send a request through HttpURLConnection through theseproxies? If it is not possible, then Wh...

Why does this code for checking proxy validity crash?

I have the following code in my program. When I try to check if the proxy is a valid proxy or not it crashes my program. Any ideas how to fix this? I'm using indy 10. if checkproxy('http://www.google.com') label1.text:='Good' else label1.text:='bad'; If I try to call another idHTTP connect after requesting checkproxy it crashes the...

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 through google search and i can't find any helpful results. Thxs. ...

Connect to adobe stratus server in a flex application from inside a proxy

Hi, I am trying to develop a P2P conferencing application in flex using RTMFP. So I have to make connection to Adobe Stratus server for Id of Flash Player instance. I am a student and behind the http proxy. I have checked in NetConnection class but, didn't find anything related proxy configuration.So, How can I configure proxy settings ...

How do I set a proxy in Monodevelop to get to the Add-in Manager repos ?

I have monodevelop running great except for the fact that I need to get the "Subsversion Add-in for Windows" and my work proxy is blocking the repo. Any idea of how I can specify the proxy info so I can get to the repo? ...

NHibernate proxy generation for internal setters vs private setters

Why can NHibernate create a proxy for classes with properties that have private setters but not for classes with properties that have internal setters? Or am I missing something that should be completely obvious? public class PrivateSetter { // no proxy error public virtual string PrivateSetterProperty { get; private set; } } ...

Tomcat and proxy request

I configure a default tomcat installation (running on "localhost" at port "8080") as a proxy server in my browser and try to connect to http://www.google.com. I would expect either an error message saying tomcat is not configured as a proxy server or I should get the contents of google website. Instead I get the index.html page of my t...