tagged [proxy]

What is the proxy meaning in EntityFramework?

What is the proxy meaning in EntityFramework? I've used as an ORM in my projects and I don't have any problem in using this technology. I heard EntityFramework creates a proxy. I want to know WHAT pro...

2 Jan at 03:53

Under what conditions will `RealProxy.GetTransparentProxy()` return `null`?

Under what conditions will `RealProxy.GetTransparentProxy()` return `null`? The documentation at [http://msdn.microsoft.com/en-us/library/system.runtime.remoting.proxies.realproxy.gettransparentproxy%...

23 Dec at 17:37

What is com.sun.proxy.$Proxy

What is com.sun.proxy.$Proxy I have seen that when errors occur deep in different frameworks (e.g frameworks implementing the EJB specification or some JPA providers) the stacktrace contain classes li...

14 Jun at 12:7

What are the downsides to turning off ProxyCreationEnabled for CTP5 of EF code first

What are the downsides to turning off ProxyCreationEnabled for CTP5 of EF code first The only way that my WCF service can return classes from a code first model is by setting the `ProxyCreationEnable`...

Is there a way to create a DynamicObject that supports an Interface?

Is there a way to create a DynamicObject that supports an Interface? Can I define a class which derives from DynamicObject and supports an interface (ICanDoManyThings) without having to implement each...

15 Jul at 19:50

using Tor as Proxy

using Tor as Proxy I'm trying to use Tor-Server as a proxy in `HttpWebRequest`, my code looks like this: it works perfect with "normal" proxies but

31 Mar at 12:34

How do I determine (elegantly) if proxy authentication is required in C# winforms app

How do I determine (elegantly) if proxy authentication is required in C# winforms app My use case is this, I want to call out to a webservice and if I am behind a proxy server that requires authentica...

29 Jan at 01:29

How to configure a HTTP proxy for svn

How to configure a HTTP proxy for svn I want to check code from the repository [http://code.sixapart.com/svn/perlbal/](http://code.sixapart.com/svn/perlbal/) . I can only access the the repository url...

23 May at 11:34

Apache: ProxyPass max parameter has no effect

Apache: ProxyPass max parameter has no effect I am using the following Apache config to forward requests to a Tomcat server: This is a simplified config, but is enough to reproduce the issue, which is...

7 Jul at 13:11

FTP File Upload with HTTP Proxy

FTP File Upload with HTTP Proxy Is there a way to upload a file to a FTP server when behind an HTTP proxy ? It seems that uploading a file is not supported behind an HTTP Proxy using .Net Webclient. (...

19 Sep at 17:20

How to fill in proxy information in cntlm config file?

How to fill in proxy information in cntlm config file? > [Cntlm](http://cntlm.sourceforge.net/) is an NTLM / NTLM Session Response / NTLMv2 authenticating HTTP proxy intended to help you break free fr...

8 Jun at 13:47

Connect with SSH through a proxy

Connect with SSH through a proxy I have no real idea what I'm doing here so please bear that in mind if you can help me! I am trying to connect to my virtual server through a proxy but I can't connect...

9 Oct at 19:6

How to clear https proxy setting of NPM?

How to clear https proxy setting of NPM? How can I clear the previous ssl proxy setting of NPM? well, I search a lot, but all post I got is mainly about how to `set` proxy in corporate network. I try ...

20 Jan at 08:10

What's the difference between WebRequest.DefaultWebProxy and WebRequest.GetSystemWebProxy()?

What's the difference between WebRequest.DefaultWebProxy and WebRequest.GetSystemWebProxy()? I am wondering what the main differences are between `DefaultWebProxy` and `GetSystemWebProxy()`. There're ...

20 Jul at 22:6

Getting underlying type of a proxy object

Getting underlying type of a proxy object I'm using Castle DynamicProxy and my ViewModels are a proxy, something like this: a proxy of my viewmodel looks like this though: {Name = "IRootViewModelProxy...

Removing SOCKS 4/5 proxy

Removing SOCKS 4/5 proxy This question is sort of the opposite of this: [How can I use a SOCKS 4/5 proxy with urllib2?](https://stackoverflow.com/questions/2317849/how-can-i-use-a-socks-4-5-proxy-with...

23 May at 11:48

Programmatically Set Browser Proxy Settings in C#

Programmatically Set Browser Proxy Settings in C# I'm writing an winforms app that needs to set internet explorer's proxy settings and then open a new browser window. At the moment, I'm applying the p...

13 Oct at 14:17

Forwarding port 80 to 8080 using NGINX

Forwarding port 80 to 8080 using NGINX I'm using LEMP stack and Node JS on my debian server. Nginx works on port 80 and Node JS on 8080. I created new subdomain: cdn.domain.com for nodejs app. Current...

31 Jul at 07:12

nginx - read custom header from upstream server

nginx - read custom header from upstream server I am using nginx as a reverse proxy and trying to read a custom header from the response of an upstream server (Apache) without success. The Apache resp...

18 Dec at 20:59

Is it possible to specify proxy credentials in your web.config?

Is it possible to specify proxy credentials in your web.config? I need to configure a website to access a webservice on another machine, via a proxy. I can configure the website to use a proxy, but I ...

9 Oct at 11:31

Add service reference to ASP.NET Web API service

Add service reference to ASP.NET Web API service I've got an MVC solution that hosts a few routes for Web API services. In some situations, I will call these from JavaScript with a simple HTTP get. In...

16 Aug at 17:40

How can I prevent a base constructor from being called by an inheritor in C#?

How can I prevent a base constructor from being called by an inheritor in C#? I've got a (poorly written) base class that I want to wrap in a proxy object. The base class resembles the following: and,...

1 Oct at 19:36

HttpClient and using proxy - constantly getting 407

HttpClient and using proxy - constantly getting 407 Here is the code: ``` HttpClient client = null; HttpClientHandler httpClientHandler = new HttpClientHandler() { Proxy = new WebProxy(string.Format...

24 Apr at 22:35

Forward request headers from nginx proxy server

Forward request headers from nginx proxy server I'm using Nginx as a proxy to filter requests to my application. With the help of the "http_geoip_module" I'm creating a country code http-header, and I...

3 Nov at 08:58

Permanently disable Configuration.ProxyCreationEnabled in EF?

Permanently disable Configuration.ProxyCreationEnabled in EF? Instead of having to do the following on every query, is there a way to just set that value globally? There is a lazyloading setting in th...