active questions tagged proxy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T01:20:54Zhttp://stackoverflow.com/feeds/tag/proxyhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1843409/remote-and-dynamic-proxy0remote and dynamic proxyIdan2009-12-03T22:24:00Z2009-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-server3Home proxy serverNathan DeWitt2008-09-30T17:40:01Z2009-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 & 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-access0hosted proxy to monitor web accessPatLogan2009-12-11T14:47:10Z2009-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-00Validate an Xml file against a DTD with a proxy. C# 2.0Chris Dunaway2009-12-11T15:39:45Z2009-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><?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE cXML SYSTEM "http://xml.cxml.org/schemas/cXML/1.2.018/InvoiceDetail.dtd">
<cXML payloadID="123456" timestamp="2009-12-10T10:05:30-06:00">
<!-- content snipped -->
</cXML>
</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-request0I need some tool to view Http Request.Roman2009-12-11T13:52:32Z2009-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-1what is a http proxy [closed]trinity2009-12-10T18:21:41Z2009-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-information1How do I get HTTP::Proxy to log filter information?Ambrose2009-12-10T05:13:57Z2009-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, '>>', "/Users/ambrose/proxy-log.txt" ) or die "$!";
my $proxy = HTTP::Proxy->new;
$proxy->port(3128);
$proxy->logfh(*LOG);
$proxy->logmask( ALL );
$proxy->push_filter(
mime => 'text/html',
response => HTTP::Proxy::BodyFilter::tags->new(),
response => HTTP::Proxy::BodyFilter::simple->new(
sub { ${ $_[1] } =~ s!(</?)i>!$1b>!ig }
)
);
$proxy->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->logmask( ALL );
</code></pre>
<p>to</p>
<pre><code>$proxy->logmask( FILTERS );
</code></pre>
<p>nothing gets added to the log file at all.</p>
http://stackoverflow.com/questions/1880429/apache-reverse-proxy-server0Apache Reverse Proxy Server. bllackeye2009-12-10T11:42:42Z2009-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-https2Does urllib2 in Python 2.6.1 support proxy via httpsstefanB2009-06-23T00:50:28Z2009-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&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-requests0Capture IE resource requestsMaxK2009-10-30T13:59:49Z2009-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-joomla0How to use Squid(Proxy and reverse proxy) with joomlavipinsahu2009-12-09T12:10:50Z2009-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-qnetworkaccessmanager0How to handle proxies when using QNetworkAccessManagerAndy M2009-12-09T08:35:25Z2009-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->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-mac2HTTP debugging proxy for Linux and MacGeorge V. Reilly2009-10-24T09:55:57Z2009-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-nethttpget1Ruby - Socks4 proxy with WWW::Mechanize and NET::HTTP::GETmaxedmelon2009-12-08T13:08:00Z2009-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-server0Socket Proxy ServerEBAGHAKI2009-12-08T22:42:51Z2009-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-files0How To Authenticate Socks 5 Proxies Inside PAC (Proxy Auto Config) FilesdarkAsPitch2009-12-06T23:37:49Z2009-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-linux0job scheduling in linuxaman2009-12-08T00:15:40Z2009-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-generation0WCF Proxy Generation2009-03-25T16:20:10Z2009-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-wininet0Creating robust HTTP connection for dummy users with WinINETFrancis2009-12-08T09:10:13Z2009-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-server0How to connect to SQL Server through proxy serverbegray2009-03-05T18:41:04Z2009-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-device0Is there any library that can provide access to a web server running on a device behind firewall?videoguy2009-11-27T06:49:35Z2009-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-proxy0Urllib2 Send Post data through proxyRedWarrior2009-12-06T22:18:46Z2009-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-aj1What functions are necessary to program a PHP script that can interact with an AJAX website like a normal browser?Equinox2009-12-06T04:30:55Z2009-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-runtime0nhibernate Operation could destabilize the runtime.mrblah2009-12-03T15:56:18Z2009-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& canBeCached, RuntimeMethodHandle& ctor, Boolean& 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-artifactory1How to debug HTTP Proxy problems with artifactory?Mauli2009-08-17T17:49:26Z2009-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-out0Changing DefaultWebProxy causing WebRequests to time outSeptih2009-12-01T10:04:34Z2009-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) && !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-client0Where do I specify proxy credentials in my WCF client?Subindev2009-12-04T08:53:17Z2009-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<IService> sericeInterface =
new ChannelFactory<IService>(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-webservices2Making one copy of complex type from 2 webservices.AJ2009-12-03T17:46:26Z2009-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-proxy0How can urllib2 / httplib talk HTTP 1.1 for HTTPS connections via a Squid proxy ?Cheekysoft2009-12-03T17:59:38Z2009-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-linfu1Dynamic Proxy generation with LinFuRauhotz2009-01-11T01:16:34Z2009-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>