proxy

Authentication Subversion write-through proxy

Since version 1.5 Subversion supports to have a local caching-proxy for the main Master-repository. I got the slave synced and the master replaying the commits to the slave. Everything works fine so far, but now I am wondering how to do the authentication (working with this guide). When both, the master and the slave, have authentica...

rtsp over http over a proxy

I am trying to fetch an RTSP stream over HTTP using a proxy. The behavior of the Real client seems to be a bit hectic: it tries all the possible ports, methods and protocols at once. The only thing that should work is HTTP GET over port 80. Such a request is indeed issued, and is received on the server. Here's how the request looks when ...

How to connect a Java application through a BlueCoat proxy?

I´m trying to connect a Java application through a BlueCoat proxy, an I´m getting an HTTP status of 407, with a message that says that "credentials are missing"... Does anyone have some Java code to read an HTML page through this kind of proxy, using integrated security? ...

how to set proxy configuration of SVK

I'm working behind a proxy, and now I'm trying to mirror a remote subversion repository, then got "could not connect to server" error with the "svn mirror" command. I found the following on svk faq page: "Currently svk doesn't have its own configuration file. however it loads the one that subversion uses, which should be ~/.su...

How can I apply authenticated proxy exceptions to an opener using urllib2?

When using urllib2 (and maybe urllib) on windows python seems to magically pick up the authenticated proxy setting applied to InternetExplorer. However, it doesn't seem to check and process the Advance setting "Exceptions" list. Is there a way I can get it to process the exceptions list? Or, ignore the IE proxy setting and apply my ow...

Completely Disabling WCF Proxy

How can I configure WCF service and client to completely bypass proxy settings configured in IE. My application works in a LAN and I use both BasicHttp and NetTcp endpoints. ...

How can I write a simple HTTP proxy in Perl?

I don't want to use the HTTP::Proxy package because I want to dump out a couple requests. My one liner looks like this, but breaks on trying to pass the header in: perl -MData::Dumper -MHTTP::Daemon -MHTTP::Status -MLWP::UserAgent -e 'my $ua = LWP::UserAgent->new;my $d=new HTTP::Daemon(LocalPort=>1999);print "Please contact me at: <", $...

Use ruby gem, apt-get,etc. through a proxy with NTLM authentication

What solutions are out there for getting through a corporate proxy using NTLM authentication? Anything that isn't a browser fails. I've tried NTLMAPS, without success. ...

Get Proxy configuration before accessing an external webservice (.NET 2.0)

When trying to invoke a method on an external webservice (over the Internet) it throws me "The remote server returned an error: (407) Proxy Authentication Required." To solve this, I used the following code to set the proxy we use in the office: //Set the system proxy with valid server address or IP and port. System.Net.WebProxy pry = ...

unable to post a https WebRequest in .net?

Hi i am encountering problems trying to post a WebRequest under Https. i received the following errors 1.-The underlying connection was closed: Unable to connect to the remote server. 2.-the operation TimeOut 3-The underlying connection was closed: Could not establish secure channel for SSL/TLS. i tried with about 3 or 4 different ...

Connecting to an asmx webservice with WCF through a proxy

Hello, Sorry answer found while typing I am trying to connect to an external webservice that requires username/password authentication through a proxy. I am using Visual Studio Express 2008 to generate a service reference I have connected to the same webservice using a web reference.We only had to set a larger timeout because it ...

Getting the caller to a Spring AOP Proxy

I'm searching for a way of developing a MethodInterceptor which prints the caller class. Is there any way of getting the caller object into the method interceptor? ...

Proxy exceptions in C#

We have a problem with our project. We make web services with C# and a client for the web services. In our office the client work fine, but in production we have a problem with proxy. Proxy is configured in Windows Internet Properties. The client has to connect to http:\aaa.com and http:\aaa.com is a proxy exception. But the client doesn...

In .NET, What is the Runtime Equivalent of my app.config Setting?

If I have the following setting in my app.config file. It is a setting I need to make sure my WCF client can negotiate the default proxy server. <system.net> <defaultProxy enabled="true" useDefaultCredentials="true"></defaultProxy> </system.net> Unfortunately, I can't add to the app.config file in my environment. How do I ensure...

How should I set the default proxy to use default credentials?

The following code works for me: var webProxy = WebProxy.GetDefaultProxy(); webProxy.UseDefaultCredentials = true; WebRequest.DefaultWebProxy = webProxy; Unfortunately, WebProxy.GetDefaultProxy() is deprecated. What else should I be doing? (using app.config to set the defaultProxy settings is not allowed in my deployment) ...

Getting RAW Soap Data from a Web Reference Client running in ASP.net

I'm trying to trouble shoot a web service client in my current project. I'm not sure of the platform of the Service Server (Most likely LAMP). I believe there is a fault on their side of the fence as i have eliminated the potential issues with my client. The client is a standard ASMX type web reference proxy auto generated from the se...

Specifying a proxy to use with DotNetOpenID

I'm using DotNetOpenID to provide relying party OpenID support for our website. All external requests have to be brokered via a proxy server, and I'm looking for a way to tell DotNetOpenID to use this proxy. I know I can set up a global proxy config in web.config, but I currently only want this to apply to the calls made to the OpenID pr...

Open Source Proxy Library for .Net

I'm looking for a open source .Net HTTP proxy library. Basically I want to develop something like Fiddler (so much lighter with less features). ...

What's the easiest way to change the Windows proxy address using .NET code?

I found a code samples here: http://sturla.simnet.is/post/2008/09/22/Enable-proxy-in-IE.aspx But it's very complex and involves manipulating the Windows registry. Is there an easier and less error-prone way of changing the proxy server address? ...

Why do I get E_ACCESSDENIED calling a COM+ method from a proxy?

Sorry if this is a bit long whinded... consider this: I have a COM+ application in a namespace called Company that exposes an object called Server which has the following methods: bool Server.Execute(IOptions options) IOptions Server.CreateOptions() IOptions simply has a couple of boolean read/write properties as follows: IOptions....