active questions tagged proxy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T01:20:54Z http://stackoverflow.com/feeds/tag/proxy http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1843409/remote-and-dynamic-proxy 0 remote and dynamic proxy Idan 2009-12-03T22:24:00Z 2009-12-11T20:56:21Z <ol> <li>i understand that ,once, developing remote proxy included generating stub/skeleton , though today this is no longer needed thanks to reflection. (dynamic proxy)</li> </ol> <p>i want to get a clear explanation as to why and how reflection replaces this need. for example i understood the stub was suppose to handle the communication over the network (in case the the remote object is on a different computer) , plus in charge of serialization/deserialization , etc... who's in charge of that now ?</p> <p>maybe i got the concept of dynamic proxy all wrong.</p> <ol> <li>in addition i read about that subject regarding Java and Rmi, how would i implement remote proxy in C++, i probably can use DCOM, is there another, maybe easier, way ? (and do i need stub/skeleton in DCom or like java no more ? )</li> </ol> <p>thanks</p> http://stackoverflow.com/questions/154155/home-proxy-server 3 Home proxy server Nathan DeWitt 2008-09-30T17:40:01Z 2009-12-11T18:47:48Z <p>My end goal is to have a report showing all the top level domains that were visited the previous day from all the computers at my home. The report would also be able to show which pages were visited, which local IP address went there. I'd also like to track incoming and outgoing bandwidth used.</p> <p>I don't want to install an application on each computer: ideally I would have a proxy server or something that all the connections would go through. I can't have this slow down the network - it can't affect my XBox Live ping time! ;-) I also frequently VPN from home and it shouldn't interfere with this capability.</p> <p>The existing computers are Windows (XP &amp; Vista), but I have no problem installing a *nix box as a router/proxy whatever. I have spare hardware to commit to this. Recommendations? Squid? ISA Server? Something else?</p> http://stackoverflow.com/questions/1888528/hosted-proxy-to-monitor-web-access 0 hosted proxy to monitor web access PatLogan 2009-12-11T14:47:10Z 2009-12-11T16:16:27Z <p>Hello, I am looking for a hosted proxy to monitor web access of some of my employees workstations. Could anyone indicate me where can I find such a service? Cheers Patrice</p> http://stackoverflow.com/questions/1888887/validate-an-xml-file-against-a-dtd-with-a-proxy-c-2-0 0 Validate an Xml file against a DTD with a proxy. C# 2.0 Chris Dunaway 2009-12-11T15:39:45Z 2009-12-11T15:59:23Z <p>I have looked at many examples for validating an XML file against a DTD, but have not found one that allows me to use a proxy. I have a cXml file as follows (abbreviated for display) which I wish to validate:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;!DOCTYPE cXML SYSTEM "http://xml.cxml.org/schemas/cXML/1.2.018/InvoiceDetail.dtd"&gt; &lt;cXML payloadID="123456" timestamp="2009-12-10T10:05:30-06:00"&gt; &lt;!-- content snipped --&gt; &lt;/cXML&gt; </code></pre> <p>I am trying to create a simple C# program to validate the xml against the DTD. I have tried code such as the following but cannot figure out how to get it to use a proxy:</p> <pre><code>private static bool isValid = false; static void Main(string[] args) { try { XmlTextReader r = new XmlTextReader(args[0]); XmlReaderSettings settings = new XmlReaderSettings(); XmlDocument doc = new XmlDocument(); settings.ProhibitDtd = false; settings.ValidationType = ValidationType.DTD; settings.ValidationEventHandler += new ValidationEventHandler(v_ValidationEventHandler); XmlReader validator = XmlReader.Create(r, settings); while (validator.Read()) ; validator.Close(); // Check whether the document is valid or invalid. if (isValid) Console.WriteLine("Document is valid"); else Console.WriteLine("Document is invalid"); } catch (Exception ex) { Console.WriteLine(ex.ToString()); } } static void v_ValidationEventHandler(object sender, ValidationEventArgs e) { isValid = false; Console.WriteLine("Validation event\n" + e.Message); } </code></pre> <p>The exception I receive is </p> <pre><code>System.Net.WebException: The remote server returned an error: (407) Proxy Authentication Required. </code></pre> <p>which occurs on the line <code>while (validator.Read()) ;</code></p> <p>I know I can validate against a DTD locally, but I don't want to change the xml DOCTYPE since that is what the final form needs to be (this app is solely for diagnostic purposes). For more information about the cXML spec, you can go to <a href="http://www.cxml.org" rel="nofollow">cxml.org</a>.</p> <p>I appreciate any assistance.</p> <p>Thanks</p> http://stackoverflow.com/questions/1888202/i-need-some-tool-to-view-http-request 0 I need some tool to view Http Request. Roman 2009-12-11T13:52:32Z 2009-12-11T14:30:31Z <p>It's probably some browser plugin or a proxy. </p> <p>For example, I open google.com, and type something and press 'Search'. And I want to see all params of http-request (like, method, domain, params etc)</p> http://stackoverflow.com/questions/1882992/what-is-a-http-proxy -1 what is a http proxy [closed] trinity 2009-12-10T18:21:41Z 2009-12-10T18:23:50Z <p>what is a http proxy.. How is it implemented..</p> http://stackoverflow.com/questions/1878756/how-do-i-get-httpproxy-to-log-filter-information 1 How do I get HTTP::Proxy to log filter information? Ambrose 2009-12-10T05:13:57Z 2009-12-10T17:57:49Z <p>I'm having some trouble getting filters working with <a href="http://search.cpan.org/~book/HTTP-Proxy-0.24/lib/HTTP/Proxy.pm" rel="nofollow">HTTP::Proxy</a> and I just can't seem to figure out what I should add to the <code>logmask()</code> function to get that information.</p> <p>I've got a log file, that part is fine, logging is happening, but no information about filters, although they're implemented and (sometimes) working.</p> <p>I've tried </p> <ul> <li><code>logmask(['FILTERS'])</code></li> <li><code>logmask('FILTERS')</code></li> <li><code>logmask(FILTERS)</code></li> </ul> <p>and none of those work! What am I missing?</p> <p>Also, what's all that about the powers of two for the mask? And the constants being exported by <code>:log</code>?</p> <p>I'm rather confused, as you can tell.</p> <p>EDIT:</p> <p>going by the advice below, I have the following script: </p> <pre><code>#!/sw/bin/perl use strict; use warnings; use HTTP::Proxy qw( :log ); use HTTP::Proxy::BodyFilter::tags; use HTTP::Proxy::BodyFilter::simple; open( LOG, '&gt;&gt;', "/Users/ambrose/proxy-log.txt" ) or die "$!"; my $proxy = HTTP::Proxy-&gt;new; $proxy-&gt;port(3128); $proxy-&gt;logfh(*LOG); $proxy-&gt;logmask( ALL ); $proxy-&gt;push_filter( mime =&gt; 'text/html', response =&gt; HTTP::Proxy::BodyFilter::tags-&gt;new(), response =&gt; HTTP::Proxy::BodyFilter::simple-&gt;new( sub { ${ $_[1] } =~ s!(&lt;/?)i&gt;!$1b&gt;!ig } ) ); $proxy-&gt;start; </code></pre> <p>which doesn't log anything about filters, although the filter is in operation, I can see that italics have been changed to bold, as in the example. </p> <p>If I change the line:</p> <pre><code>$proxy-&gt;logmask( ALL ); </code></pre> <p>to</p> <pre><code>$proxy-&gt;logmask( FILTERS ); </code></pre> <p>nothing gets added to the log file at all.</p> http://stackoverflow.com/questions/1880429/apache-reverse-proxy-server 0 Apache Reverse Proxy Server. bllackeye 2009-12-10T11:42:42Z 2009-12-10T11:42:42Z <p>I have been trying to set up a reverse proxy to IIS6.0. The the charset is gb2312. But the responses the proxy server sent to browser were not as expected. I understood that the libxml2 needs to parse the responses from iis and fix the links. And I am pretty sure that libxml2 did not parse the html with the indicated charset from the response header. Now, my problem is how I could tell the libxml2 to use the correct charset?</p> http://stackoverflow.com/questions/1030113/does-urllib2-in-python-2-6-1-support-proxy-via-https 2 Does urllib2 in Python 2.6.1 support proxy via https stefanB 2009-06-23T00:50:28Z 2009-12-10T11:24:38Z <p>Does <a href="http://docs.python.org/library/urllib2.html" rel="nofollow">urllib2</a> in Python 2.6.1 support proxy via https?</p> <p>I've found the following at <a href="http://www.voidspace.org.uk/python/articles/urllib2.shtml" rel="nofollow">http://www.voidspace.org.uk/python/articles/urllib2.shtml</a>:</p> <blockquote> <p>NOTE</p> <p>Currently urllib2 does not support fetching of https locations through a proxy. This can be a problem.</p> </blockquote> <p>I'm trying automate login in to web site and downloading document, I have valid username/password.</p> <pre><code>proxy_info = { 'host':"axxx", # commented out the real data 'port':"1234" # commented out the real data } proxy_handler = urllib2.ProxyHandler( {"http" : "http://%(host)s:%(port)s" % proxy_info}) opener = urllib2.build_opener(proxy_handler, urllib2.HTTPHandler(debuglevel=1),urllib2.HTTPCookieProcessor()) urllib2.install_opener(opener) fullurl = 'https://correct.url.to.login.page.com/user=a&amp;pswd=b' # example req1 = urllib2.Request(url=fullurl, headers=headers) response = urllib2.urlopen(req1) </code></pre> <p>I've had it working for similar pages but not using HTTPS and I suspect it does not get through proxy - it just gets stuck in the same way as when I did not specify proxy. I need to go out through proxy.</p> <p>I need to authenticate but not using basic authentication, will urllib2 figure out authentication when going via https site (I supply username/password to site via url)?</p> <p>EDIT: Nope, I tested with </p> <pre><code> proxies = { "http" : "http://%(host)s:%(port)s" % proxy_info, "https" : "https://%(host)s:%(port)s" % proxy_info } proxy_handler = urllib2.ProxyHandler(proxies) </code></pre> <p>And I get error:</p> <blockquote> <p>urllib2.URLError: urlopen error [Errno 8] _ssl.c:480: EOF occurred in violation of protocol</p> </blockquote> http://stackoverflow.com/questions/1649974/capture-ie-resource-requests 0 Capture IE resource requests MaxK 2009-10-30T13:59:49Z 2009-12-09T19:00:02Z <p>I am trying to create a custom HTTP request/response logger for Internet Explorer. In my application I have an embedded browser object. I have a pointer to IWebBrowser2 interface. This interface has BeforeNavigate2() and DocumentComplete() methods that get invoked only for base page requests. However those methods don’t get invoked for resource requests (such as JavaScript, images and style sheets files). </p> <p>Is there an interface that captures requests for resources, or is there any other way to capture resource requests?</p> http://stackoverflow.com/questions/1873514/how-to-use-squidproxy-and-reverse-proxy-with-joomla 0 How to use Squid(Proxy and reverse proxy) with joomla vipinsahu 2009-12-09T12:10:50Z 2009-12-09T12:10:50Z <p>hi </p> <p>i want some optimization tips on <strong>joomla</strong> performance i used memcache but i dont now how to use <strong>proxy and reverse proxy ()</strong> with joomla please help Thanks</p> http://stackoverflow.com/questions/1872436/how-to-handle-proxies-when-using-qnetworkaccessmanager 0 How to handle proxies when using QNetworkAccessManager Andy M 2009-12-09T08:35:25Z 2009-12-09T11:28:55Z <p>Hey everyone,</p> <p>I'm facing some trouble when using the class <b>QNetworkAccessManager</b>.</p> <p>I use it to download a simple file from an url like "http://www.foo.com/bar/foobar.txt".</p> <p>When I start a download I use :</p> <pre><code>m_pNetworkReply = m_pNetworkAccessManager-&gt;get(QNetworkRequest(m_CurrentFileToDownload)); </code></pre> <p>Then I connect a few slots to receive, for example, errors during the process of downloading the file.</p> <p>My problem is, if the computer is using a proxy, how do I manage to know it ? I've seen the class <b>QNetworkProxy</b> but how do I initialise it ? </p> <p>Is there a way to match the settings of the default browser ? Do I have to let the user configure himself the proxy ?</p> <p>I hope my question is clear...</p> <p>Thanks in advance for your help and advices !</p> http://stackoverflow.com/questions/1617536/http-debugging-proxy-for-linux-and-mac 2 HTTP debugging proxy for Linux and Mac George V. Reilly 2009-10-24T09:55:57Z 2009-12-09T10:20:30Z <p>I use the <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler</a> proxy to debug all kinds of HTTP issues on Windows. It's great for inspecting headers and responses across multiple pages.</p> <p>Is there a good HTTP debugging proxy for Mac and Linux? I found <a href="http://www.charlesproxy.com/" rel="nofollow">Charles</a>, but it's $50 once the trial runs out and it crashed on me. I could use <a href="http://www.wireshark.org/" rel="nofollow">Wireshark</a>, but it's a pain.</p> http://stackoverflow.com/questions/1866866/ruby-socks4-proxy-with-wwwmechanize-and-nethttpget 1 Ruby - Socks4 proxy with WWW::Mechanize and NET::HTTP::GET maxedmelon 2009-12-08T13:08:00Z 2009-12-09T06:15:35Z <p>Hey, I searched on google and read in the ruby manuals, but I couldn't find a way to use WWW::Mechanize and NET::HTTP::GET over a socks4 proxy.</p> <p>I read, that WWW::Mechanize is a subclass of the UserAgent module, and that therefore the ->proxy() method would work. But the manual only talks about http, ftp and gopher proxy.</p> <p>Any ideas how to support socks4? Here are the code snippets:</p> <pre><code>def get_request(url_in) url = URI.parse(url_in) req = Net::HTTP::Get.new(url.path, {"User-Agent" => $UserAgent}) res = Net::HTTP.start(url.host, url.port) { |http| http.request(req) } return res.body end</code></pre> <pre><code> agent = WWW::Mechanize.new agent.user_agent_alias('Windows Mozilla') page = agent.get("urlhere") post_form = page.form('post')</code></pre> <p>Thanks for reading</p> http://stackoverflow.com/questions/1870415/socket-proxy-server 0 Socket Proxy Server EBAGHAKI 2009-12-08T22:42:51Z 2009-12-08T23:11:07Z <p>Suppose Client A connects though TCP/IP Sockets to Server B Is it possible to create a Proxy Like Server thing to do this:</p> <p>Client A Connects to Proxy X ; And tried to authenticate to the server (sends authentication data) ; Proxy X receives those data and sends them to Server B and gets the response from the Server B and returns the result to client A</p> <p>Is it possible? If it is any source code available?</p> http://stackoverflow.com/questions/1857039/how-to-authenticate-socks-5-proxies-inside-pac-proxy-auto-config-files 0 How To Authenticate Socks 5 Proxies Inside PAC (Proxy Auto Config) Files darkAsPitch 2009-12-06T23:37:49Z 2009-12-08T21:20:13Z <p>How can you setup PAC files to use SOCKS proxies with authentication?</p> <p>Using this simple PAC file as an example:</p> <pre><code>function FindProxyForURL(url, host) { return "SOCKS 69.123.133.75:7257;"; } </code></pre> <p>How would you connect to that socks proxy using a username and password?</p> http://stackoverflow.com/questions/1863776/job-scheduling-in-linux 0 job scheduling in linux aman 2009-12-08T00:15:40Z 2009-12-08T17:59:51Z <p>hi, I want to schedule access to some website for a limited period of time say for 1 hour every day. How can i do that using cron job in linux. or can i do that using linux squid server?. </p> http://stackoverflow.com/questions/682345/wcf-proxy-generation 0 WCF Proxy Generation 2009-03-25T16:20:10Z 2009-12-08T10:00:08Z <p>I use svcutil to generate my wcf proxy that is calling a WSE2 web service.</p> <p>The problem comes when the web service author changes the order of fields in the proxy.</p> <p>I examined the generated proxy and sees that the public attributes are adorned with the XmlElementAttribute(Order=0) .. Order=1, etc for each field.</p> <p>Is there a way to generate WCF proxies that can still function after the web service has changed?</p> <p>Because right now I will need to regenerate the proxy and recompile.</p> <p>Thanks in Advance</p> http://stackoverflow.com/questions/1865698/creating-robust-http-connection-for-dummy-users-with-wininet 0 Creating robust HTTP connection for dummy users with WinINET Francis 2009-12-08T09:10:13Z 2009-12-08T09:10:13Z <p>I'm making a program which downloads a simple file from internet on Windows, using Wininet family API because I want to utilize its IE-compatible proxy behavior. As you all know, current IE has several proxy settings: auto-detect (WPAD), auto-configure (PAC), manually single URL, proxy servers per protocol, socks, direct, ... For most users, the "direct download" works fine; however for some users (especially those behind firewall / NAT), they always need special proxy settings when making connections.</p> <p>It's painful to write code to handle all these cases so I hope WinINET with <code>InternetOpen (INTERNET_OPEN_TYPE_PRECONFIG)</code> can help me. It does for most users, however I still find some users complaining connection failure. These user may have very special network environments (eg, need username/password auth for proxy) and direct connection does not work for them.</p> <p>Sometimes dummy users had wrong configuration, and I'd like wininet to try "all" possible proxy settings for me; unfortunately the <code>INTERNET_OPEN_TYPE_PRECONFIG</code> will only try the one that user configured, not "every possible proxy settings".</p> <p>So my question is, how do I make a program with most strong ability to workaround all http connection (especially for proxy configuration) for dummy users (i.e, they don't understand how to configure their system)? Is there any suggested way to make HTTP connections without the need to take care of proxy stuff? (i.e., a "super" connection solver which will try all possible proxy settings), or if there's any method to tell WinINET to enable all its proxy settings to create connection?</p> http://stackoverflow.com/questions/616042/how-to-connect-to-sql-server-through-proxy-server 0 How to connect to SQL Server through proxy server begray 2009-03-05T18:41:04Z 2009-12-08T00:14:45Z <p>Is it possible to connect to SQL Server server through proxy (http) using SQLSERVER oledb provider?</p> <p>How can I specify proxy address and port in connection string if it's possible?</p> <p>What nonstandard methods to bypass proxy you'd recommend if it's not possible?</p> http://stackoverflow.com/questions/1807155/is-there-any-library-that-can-provide-access-to-a-web-server-running-on-a-device 0 Is there any library that can provide access to a web server running on a device behind firewall? videoguy 2009-11-27T06:49:35Z 2009-12-07T03:11:21Z <p>Hi<br> We have a device with a web server running on it. From a PC, you can access web ui of the device using a web browser. This works fine when the pc and device are under same corporate network. We sell these devices to lots of customers. I am working on a tool that helps our support guys to access the web ui of the device that are running behind customer firewall. <br> The device runs on top of embedded Linux. What I am looking for is something like Copilot that can expose web server to outside world. Lets assume the security things are taken care of somehow. Imagine there is a server running at our company that all these devices can post to using https. Is there any library (open source or commercial) that I can use and build an app <br></p> <pre> that runs on the device, connects to our server in the cloud, if there is a pending connection from a support guy, it passes that http request to web server and any result from web server back to the support server. </pre> <p>If it is a PC based device, I can use copilot or VNC. This is embedded device with our own set of applications. Just wondering whether there is any library that I can start with instead of building my own from scratch <br></p> <p>I appreciate any pointers.</p> <p>Thanks Video guy</p> http://stackoverflow.com/questions/1856814/urllib2-send-post-data-through-proxy 0 Urllib2 Send Post data through proxy RedWarrior 2009-12-06T22:18:46Z 2009-12-06T22:49:23Z <p>I have configured a proxy using proxyhandler and sent a request with some POST data:</p> <pre><code>cookiejar = cookielib.CookieJar() proxies = {'http':'http://some-proxy:port/'} opener = urllib2.build_opener(urllib2.ProxyHandler(proxies),urllib2.HTTPCookieProcessor(cookiejar) ) opener.addheaders = [('User-agent', "USER AGENT")] urllib2.install_opener(opener) url = "URL" opener.open(url, urllib.urlencode({"DATA1":"DATA1"})) </code></pre> <p>then I get a 405 http error (Method not allowed)</p> <p>may I get some assistance? I cannot figure out what is going wrong</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1854368/what-functions-are-necessary-to-program-a-php-script-that-can-interact-with-an-aj 1 What functions are necessary to program a PHP script that can interact with an AJAX website like a normal browser? Equinox 2009-12-06T04:30:55Z 2009-12-06T18:49:43Z <p>I want to know what is necessary to create a PHP script that can interact with a website like a normal browser. The website would be rich in Ajax, so the PHP script needs to know how to handle Javascript functions and maintain an continuous connection with the website. </p> http://stackoverflow.com/questions/1840853/nhibernate-operation-could-destabilize-the-runtime 0 nhibernate Operation could destabilize the runtime. mrblah 2009-12-03T15:56:18Z 2009-12-04T14:43:31Z <p>Locally my site works, but at host I am getting the error:</p> <p>"Operation could destabilize the runtime."</p> <p>I am using nhibernate. I am using the repository pattern.</p> <pre><code>[VerificationException: Operation could destabilize the runtime.] CategoryProxy..ctor() +6 [TargetInvocationException: Exception has been thrown by the target of an invocation.] System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean&amp; canBeCached, RuntimeMethodHandle&amp; ctor, Boolean&amp; bNeedSecurityCheck) +0 System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean fillCache) +86 System.RuntimeType.CreateInstanceImpl(Boolean publicOnly, Boolean skipVisibilityChecks, Boolean fillCache) +230 System.Activator.CreateInstance(Type type, Boolean nonPublic) +67 LinFu.DynamicProxy.ProxyFactory.CreateProxy(Type instanceType, IInterceptor interceptor, Type[] baseInterfaces) +20 NHibernate.ByteCode.LinFu.ProxyFactory.GetProxy(Object id, ISessionImplementor session) +208 [HibernateException: Creating a proxy instance failed] NHibernate.ByteCode.LinFu.ProxyFactory.GetProxy(Object id, ISessionImplementor session) +306 </code></pre> http://stackoverflow.com/questions/1289402/how-to-debug-http-proxy-problems-with-artifactory 1 How to debug HTTP Proxy problems with artifactory? Mauli 2009-08-17T17:49:26Z 2009-12-04T14:29:18Z <p>I have an artifactory within a corporate network. I configured a http proxy for each remote repository. It doesn't work. How could I possibly find out why it doesn't work? Are there any log settings which I could tweak?</p> <p>Using the same proxy within Firefox works just fine.</p> http://stackoverflow.com/questions/1825207/changing-defaultwebproxy-causing-webrequests-to-time-out 0 Changing DefaultWebProxy causing WebRequests to time out Septih 2009-12-01T10:04:34Z 2009-12-04T11:54:31Z <p>For the project I'm working on, we have a desktop program that contacts an online server for a store. Because it's used in schools, getting the proxy setup right is tricky. What we've gone for is to allow users to specify proxy details to use if they want, otherwise it uses the ones from IE. We've also tried to bypass incorrect details being put in, so the code tries the user specified proxy, if that fails the default one, if that fails, then with credentials, if that fails then null.</p> <p>The problem I'm having is that in places where the proxy settings need to be changed in succession (for example, if their registration fails because the proxy is wrong, they change one tiny thing and try again, takes seconds.) I end up with calls to a HttpRequests .GetResponse() timing out, causing the program to freeze for a good while. Sometimes if I leave a minute or two between the changes, it doesn't freeze, but not every time (Just tried again now after 10mins and it's timing out again).</p> <p>I can't spot anything in the code that could cause this - though it looks a bit messy. I don't think it could be the server refusing the request unless it's generic server behaviour as I've tried this with requests to our server and others such as google.co.uk.</p> <p>I'm posting the code in the hope that someone may be able to spot something that's wrong with it, or knows a much simpler way of doing what we're trying to.</p> <p>The tests we run are without any proxy, so the first part is usually skipped. The first time ApplyProxy is run, it works fine and finishes everything in the first try block, the second, it can either timeout on the GetResponse in the first try block and then go through the rest of the code, or it can work there and timeout on the actual requests made for the registration.</p> <p>Code:</p> <p>void ApplyProxy() {</p> <pre><code> Boolean ProxySuccess = true; String WebRequestURI = @"http://www.google.co.uk"; if (UseProxy) { try { String ProxyUrl = (ProxyUri.ToLower().Contains("http://")) ? ProxyUri : "http://" + ProxyUri; WebRequest.DefaultWebProxy = new WebProxy(ProxyUrl); if (!string.IsNullOrEmpty(ProxyUsername) &amp;&amp; !string.IsNullOrEmpty(ProxyPassword)) WebRequest.DefaultWebProxy.Credentials = new NetworkCredential(ProxyUsername, ProxyPassword); HttpWebRequest request = HttpWebRequest.Create(WebRequestURI) as HttpWebRequest; request.Method = "GET"; HttpWebResponse response = request.GetResponse() as HttpWebResponse; } catch { ProxySuccess = false; } } if(!ProxySuccess || !UseProxy) { try { WebRequest.DefaultWebProxy = WebRequest.GetSystemWebProxy(); HttpWebRequest request = HttpWebRequest.Create(WebRequestURI) as HttpWebRequest; request.Method = "GET"; HttpWebResponse response = request.GetResponse() as HttpWebResponse; } catch (Exception e) { //try with credentials //make a new proxy from defaults WebRequest.DefaultWebProxy = WebRequest.GetSystemWebProxy(); String newProxyURI = WebRequest.DefaultWebProxy.GetProxy(new Uri(WebRequestURI)).ToString(); if (newProxyURI == String.Empty) { //check we actually get a result WebRequest.DefaultWebProxy = null; return; } //continue WebProxy NewProxy = new WebProxy(newProxyURI); NewProxy.UseDefaultCredentials = true; NewProxy.Credentials = CredentialCache.DefaultCredentials; WebRequest.DefaultWebProxy = NewProxy; try { HttpWebRequest request = HttpWebRequest.Create(WebRequestURI) as HttpWebRequest; request.Method = "GET"; HttpWebResponse response = request.GetResponse() as HttpWebResponse; } catch { WebRequest.DefaultWebProxy = null; } } } } </code></pre> http://stackoverflow.com/questions/1845708/where-do-i-specify-proxy-credentials-in-my-wcf-client 0 Where do I specify proxy credentials in my WCF client? Subindev 2009-12-04T08:53:17Z 2009-12-04T10:08:35Z <p>I have created a WCF client using channel factory. But I am not able to connect to a server in another machine. I am getting a (407) Prxy Authentication Required exception.</p> <pre><code>WSHttpBinding wsBinding = new WSHttpBinding(); wsBinding.BypassProxyOnLocal = true; EndpointAddress endpoint = new EndpointAddress("http://machineName:7676/MyWCFService"); ChannelFactory&lt;IService&gt; sericeInterface = new ChannelFactory&lt;IService&gt;(wsBinding, endpoint); sericeInterface.Credentials.Windows.ClientCredential = System.Net.CredentialCache.DefaultNetworkCredentials; sericeInterface = sericeInterface.CreateChannel(); </code></pre> <p>This is my client connection code nippet. I am getting exception when I call a method of the service.</p> http://stackoverflow.com/questions/1841645/making-one-copy-of-complex-type-from-2-webservices 2 Making one copy of complex type from 2 webservices. AJ 2009-12-03T17:46:26Z 2009-12-03T18:26:58Z <p>Hi In C# (other .Net OOP languages as well), I have 2 webservices. Svc1 returns a complex datatype which becomes the parameter for svc2. Note that it is the same complex type.</p> <p>Now, I create the 2 proxy classes of these 2 webservices. Which means the same type gets generated twice. </p> <p>How can I make sure that in 2 proxies only one copy of that type is there? You may assume same or different namespaces of 2 webservices.</p> <p>Thanks AJ</p> http://stackoverflow.com/questions/1841730/how-can-urllib2-httplib-talk-http-1-1-for-https-connections-via-a-squid-proxy 0 How can urllib2 / httplib talk HTTP 1.1 for HTTPS connections via a Squid proxy ? Cheekysoft 2009-12-03T17:59:38Z 2009-12-03T18:00:48Z <p>When I use urllib2 to make a HTTP 1.1 connection via a squid proxy, squid makes a new ongoing connection in HTTP 1.0.</p> <p>How can I persuade Squid to talk 1.1 to the destination server?</p> http://stackoverflow.com/questions/432100/dynamic-proxy-generation-with-linfu 1 Dynamic Proxy generation with LinFu Rauhotz 2009-01-11T01:16:34Z 2009-12-03T13:24:22Z <p>I am trying to build a dynamic proxy for an interface with LinFu. The proxy should just implement the getter methods of the properties that are defined by the interface and return for instance a value from a dictionary, where the key is the property name.</p> <p><a href="http://code.google.com/p/linfu/" rel="nofollow">link text</a></p>