Questions tagged [webproxy]

126 questions
64
votes
8 answers

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…
Martyn
  • 15,782
  • 24
  • 69
  • 104
48
votes
5 answers

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…
Cheeso
  • 180,104
  • 92
  • 446
  • 681
43
votes
3 answers

Advantages of a reverse proxy in front of Node.JS

What are the advantages of having nginx or another web-server running as a reverse-proxy in front of the Node.JS? What does it provide? (This question is intended for matters concerning web-apps, not web-pages). Thank you.
Phil
  • 11,189
  • 18
  • 68
  • 120
14
votes
3 answers

WebProxy error: Proxy Authentication Required

I use the following code to obtaing html data from the internet: WebProxy p = new WebProxy("localproxyIP:8080", true); p.Credentials = new NetworkCredential("domain\\user", "password"); WebRequest.DefaultWebProxy = p; WebClient client = new…
Oleg Ignatov
  • 857
  • 2
  • 8
  • 18
9
votes
4 answers

Accessing webservices from a website which is running behind a proxy

I am designing a website using ember and express over node. Its running in a server, say: SERVER_1. I have few webservices running in another server, say: SERVER_2. That is: website in SERVER_1 and webservices available in SERVER_2 SERVER_1 is…
user915303
8
votes
3 answers

Location of IWebProxy implementation for .NET Core

What is the available implementation of the System.Net.IWebProxy (from System.Net.Primitives, DNX Core)? By application requirement, the only framework can be used in dnxcore50, so what is the right NuGet package that contains proxy…
Pavel Baravik
  • 163
  • 1
  • 8
7
votes
0 answers

.net core 2.0 proxy requests always result in http 407 (Proxy Authentication Required)

I'm trying to make HTTP requests via a WebProxy in a .net core 2.0 web application. The code I've got works fine in .net framework so I know (believe) its not an environmental issue. I've also tried to make the request using both HttpWebRequest and…
Chet
  • 189
  • 9
7
votes
1 answer

Proxy server cache is dangerous for private data?

Suppose I have a asp.net mvc 3 application with an interface named /getdata, different users connect to the server by my PC client software and get private data using this interface. Different users are identified by their own well-encrypted…
Cheng Chen
  • 39,413
  • 15
  • 105
  • 159
7
votes
2 answers

How can I get a new default WebProxy object in a C# Windows Store app?

My question comes from an issue I discovered on a corporate network. I'm developing with Windows 8 so in my case IE10 is set to automatically detect proxy settings. In my C# app I use System.Net.Http.HttpClient. I've found that the default…
sig9
  • 111
  • 2
  • 5
7
votes
1 answer

How to make System.Net.WebProxy to not bypass local urls?

I am trying to make Fiddler work with RestSharp witch uses System.Http.WebProxy, so I want it to be set to localhost:8888 or 127.0.0.1:8888 Here is the code: var webProxy = new WebProxy(new Uri("http://127.0.0.1:8888")) { …
Restuta
  • 5,737
  • 30
  • 43
7
votes
4 answers

Error creating Web proxy

I have a CLR enabled .NET app that accesses a webservice and writes an xml file to a webserver for a SQLServer SSIS package to digest. Everything works fine on the development servers, but the production server returns the following error: Error…
James
  • 109
  • 1
  • 1
  • 7
6
votes
2 answers

Dynamically using a WebProxy with WPAD script

I am trying to call a webservice. I need to use a proxy that uses a WPAD script. The URL to this WPAD script is different for different deployments of the application. Although IE has the correct proxysettings, the application is running as a…
6
votes
7 answers

How to build local web proxy without configuring the browsers

How does Netnanny or k9 Web Protection setup web proxy without configuring the browsers? How can it be done?
user63898
  • 26,293
  • 71
  • 223
  • 438
6
votes
0 answers

C# WebProxy not works with https

I have Client + Win service. Both must work with web server using proxy. Without proxy all works fine, With system proxy settings (proxy settings from ie) WebRequest.DefaultWebProxy Client works fine, but service don't see this proxy settings…
5
votes
4 answers

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…
OscarRyz
  • 184,433
  • 106
  • 369
  • 548
1
2 3
8 9