proxy

How to configure an HTTP Proxy like Fiddler2 or Charles Web Proxy with the latest Android Emulator on Windows?

I'm at complete odds over configuring a proxy to inspect the HTTP(S) traffic for the app I'm developing. I've tried running Fiddler2 and Charles Web Proxy, both run on 127.0.0.1:888, and starting up the Android emulator with the parameter: -http-proxy http://127.0.0.1:8888 To test it out I open the Android browser. I see in Fiddler2 ...

Need async http client(NIO) which supports http/socks proxy

Hi! I seek some full featured async http client (using NIO, not thread per connection), that supports connections through all kinds of proxy(http/https/socks4/socks5). I need different proxy per connection, not one global proxy for all connections. so... what library i can use? P.S. sorry for my english ...

AOL users and using a secure server to bypass the floating proxy to get real ip.

I'm running an app that relies on ip addresses and we have run into a problem. The app only allows up to 50 submissions from the same ip. The problem we are having is that AOL users who have not submitted anything are being blocked because of AOL's proxies. I've been looking for ways around this, one solution would be MaxMinds ISP datab...

Reverse proxy with google apps?

Hi there, I'm using a google app engine application on my domain with google apps. Because of China blocking google apps, I'd like to hide google apps by putting a layer between my domain and google apps. Is there a way I can do it? ...

How to build an ASP.NET Proxy Site

I want to build a proxy site that renders any URL. Given an url, I need to replace all html links, css links and js urls from href="/original.htm" to href="http://www.myproxy.com/get?www.original.com/original.htm" sort of. How can I do? is there a ready-to-use framework? I use ASP.NET and C#. ...

proxy server ... confusion

Hi, I'd like to do a simple 'proxy' which filtering addresses but not cache (to save band) in python or in c#/f#. I've seen around but I'm bit confused... This proxy should be works in this way: in a client I should set gateway (no proxy) server check a black list and redirect client to a page or forbidden page Thanks ...

WCF calling webservice taking a long time

I have a wcf service (WCF_A ) which calls another wcf service (WCF_B) (currently I am hosting the WCF_B on my local machine with my credentials – as windows service), WCF_B internally makes a call to a webservice (WS01) that is hosted on the IIS. I have created a test client and call the WCF_A -> WCF_B -> WS01. Just before making the cal...

How do I see the raw HTTP request that the HttpWebRequest class sends?

I know you are all going to answer "use a debugging proxy server like Fiddler" but it's not that simple. Here's my situation: I have some code that runs on a server, in an ASP.NET page code-behind (aspx.cs), which (among other things) establishes a connection to another server, grabs some stuff, and then formats it and returns it to the...

Android Application Internet Access Behind Proxy

I have an android application(Android 2.2) accessing internet behind proxy. I have tried setting an APN with proxy host & port and it works fine in emulator browser. But the application fails to connect to internet. I have also tried command line option of -http-proxy, it doesn't work. Can somebody help me with it? ...

How to check whether a proxy server is blocked in China

How do I check whether a proxy server is blocked in China? Website Pulse has a tool for checking whether a website is blocked, but my proxy servers don't have web front end. Short of getting my own China-based proxy, what are my options? ...

How to do: use MPMoviePlayerController to play a remote video that must request from proxy server

Hi everyone I'm debugging an iphone app in iphone simulator and need to do a job described as title there is a socks proxy in mac's system network setting the proxy works fine when using NSMutableURLRequest, but can not works with MPMoviePlayerController please help, thanks. ...

How to detect from web application that client uses http proxy - why XFF header is missing?

I try to discover, from the web application, whether client uses transparent proxy. It should be simple in theory: just check for existence of XFF (x-forwarder-for) header. But for some unknown reasons this doesn't work at all. I work in the office which is connected to internet via corporate transparent proxy. If I go to any "ip-proxy-...

How to detect Codeen Proxy

Hello I have small proxy-list site and I would like to remove from my list all Codeen proxies. Do you have any idea how to detect them? (I prefer PHP language) I tried to compare proxyjudge results of codeen servers and normal proxies, but there is no diffrences. I would be really grateful for any ideas. ...

Mocking Asynchronous Calls in Silverlight WCF Proxy using Moq

I have a typical Silverlight application with a WCF service and I am using slsvcutil.exe to generate the standard client proxy to communicate with the web service. I am trying to write unit tests and I'm attempting to use the Silverlight Unit Testing framework and Moq to mock the proxy and remove the service dependency for testing. I am...

How to unit-test an event loop?

Hi there, I'm programming an HTTP proxy in Python (transparent proxy for request/response monitoring). But as a TDD adopter, I'm starting the project with HTTP inputs that should be caught by a TCP server. But, as any server, it must run within an event loop, so that it can listen in a specific port. Well, since starting the event loop...

HttpWebRequest WebProxy problem - The connection was closed unexpectedly

I'm trying to make a HTTP request through an open SOCKS5 proxy. I have verified that the proxy works by setting it as a proxy for Firefox before setting it as the proxy in my C#.Net application by setting request.Proxy = new WebProxy(ip, port); However, on attempting to run the application and make my request I get an exception - System...

Socks Proxy for HttpWebRequest

According to my research whilst trying to solve this problem, it turns out that the .Net WebProxy class does not support Socks proxies - a tad annoying. I also can't seem to find any code or information which explains how to implement Socks 4/5 support via a class which can easily be used with HttpWebRequest (the Proxy property, to be ex...

Using Haskell's SimpleHTTP with a Proxy?

I'm trying to figure out how make a basic GET request using Network.HTTP.simpleHTTP that will use a proxy. I have tried setting the http_proxy environment variable, and I think I understand how to make a Proxy using Network.HTTP.Proxy. But there seems to be nothing in the API on Hackage for how to set a simpleHTTP call or Request type ...

How to save files on Google App Engine server (modifying the source code of the proxy)

How to modify the source code that also collected data used by the proxy server were stored on the server GAE? (optional: for 30 days? - Because there are limits...) And... Sorry for my english, but you know what I mean? For example, to the entry on the website http://kw25net-proxy.appspot.com/www.evisibility.com/images/google-bot-450....

How to create a proxy of an interface in Java?

Hello, How can one create a proxy for an interface without creating a class that implements it? I have a concrete example: I have an interface, Contact, and need to create a proxy object that acts as a Contact. This proxy object will be used for running some TestNG tests. I have tried using the JDK approach but could find only example...