webproxy

Sun Java Web proxy - SSL transactions/sec?

I hope this is "close enough to programming" to pass the bar :) Is there any way to monitor SSL transactions / sec on Sun Webproxy? Preferably with SNMP, but anything goes :) ...

How to get proxy definitions from within an activeX

Ok, so here is the scenario: I have an activeX that uploads files using HttpWebRequest class. My problem is that I have to specify the network credentials in order to get the activeX to work properly behind a proxy server. Here is the code: HttpWebRequest req = (HttpWebRequest)WebRequest.Create(m_url); req.Proxy = new WebProxy("http:/...

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 "proxy" classes by running svcutil.exe on the WSDL for the service. (This also produces a client-side config file). In my code I new-up an ins...

Is it possible to redirect a url to another using a webproxy ( such as fiddler )

I'm trying to parse a WSDL file which is in another server but has hard codded "localhost" all over the document. When I fetch it, obviously the program complains "connection refused" because nothing is running in my machine. My question is: Is it possible to use a webproxy ( such as fiddler ) to redirect those localhost request to m...

How to by pass network using WebProxy?

If I want to bypass a Network like 192.168.1.0/24 using webProxy is there any way? WebProxy proxy = new WebProxy(); proxy.ByPassList = ??? ...

Internet Proxy server in c#

I need to implement a basic internet proxy in c#. Initial investigation it seems like it could be a tricky area. Does anyone have pointers to starting points, resources or open source implementations? ...

why won't WebProxy BypassProxyOnLocal work for me?

Hi, I'm trying to get HTTP calls I'm making from C# .NET to a local address (localhost:3000) to use the proxy I set (so I can go through fiddler). Using the below WebProxy approach works if I point the target URL to a non-local address, however I need to point it to a local web-server I have (at localhost:3000), and when I do this the ...

How to prompt the default windows credentials dialog form for internet proxy in .NET?

My .NET app uses a WebService and, in some clients, I am getting HTTP 407 (proxy authentication required). So I need to ask the user to input his user/password credentials. So, how to use the default Windows dialog? (see below) Is it possible in .NET? Or will I need to build my own custom form? ...

Detect proxy settings of non-default web browser - C#

There are similar questions out here that describe how to get the default proxy settings of the user, but what happens if let's say the user's default browser is IE, but they are using Firefox? I need to grab their current Firefox settings. Is there a way to get at these settings? It is safe to assume that I am able to detect what br...

General approaches to troubleshooting WebProxy issues

I have a .NET 2.0 Windows application that calls a .NET 1.1 web service. Users have an option of adding details of a proxy if required, along with any credentials and this proxy (a System.Net.WebProxy object) will be used when calling methods of the web service. I've instances where the proxy works for some users and not others (each us...

What is the relationship between WebProxy & IWebProxy with respect to WebClient?

I am creating an app (.NET 2.0) that uses WebClient to connect (downloaddata, etc) to/from a http web service. I am adding a form now to handle allowing proxy information to either be stored or set to use the defaults. I am a little confused about some things. First, some of the methods & properties available in either WebProxy or IWebP...

free web proxy that supports google books?

Hi, Looking for a free web proxy that supports previewing books at books.google.com Thanks! ...

c# webproxy - a big adventure?

Hi @ll, since yersterday i play a little bit with the .Net WebProxy Class, because i think the usage of webproxys in one of the big traps in the development of applications with web access (my java experience). So i made a test case: i used a squid proxy without proxy authentication and defined the proxy settings in my "ms internet ex...

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...

How to configure SSL certificates with Charles Web Proxy and the latest Android Emulator on Windows?

I would like to use Charles web proxy to work with the Android emulator in Windows. I've successfully set up charles and have started the emulator with the command line: emulator -http-proxy 127.0.0.1:8888 @NexusOne I can see traffic coming from the android emulator in Charles, but the problem is that I'm developing against a live AP...

C#, WebProxy, multiple proxies

I have a pool of IP addresses which I have registered with a supplier (firewall access). The IP addressess are for live and test servers and I do development from remote-office. Previously I created a proxy on test server and was using it to access supplier's system. I cannot provide my IP as it is dynamic. The problem now is we instal...