proxy

How can I access SQL server using ADO through a proxy?

I have a Delphi application that uses ADO to connect to a SQL server hosted on the Internet. The user running this application wants to access the SQL server through a proxy internally. How can this be done? ...

connecting between two separate socket connections..

I wrote a c# app that listens to port 8000 and 8001. There are two different applications that connects to 8000 and 8001. I have used socket arrays so that any number of connections are accepted. Will I be able to some how attach one 8000 connection and 8001 connection in such a way that what ever data send by the application connecte...

Dynamic Proxy generation with LinFu

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. link text ...

What is the best way to add summary tags to a generated webservice proxy class?

Aloha I'm referencing an external webservice in my .NET 2.0 application. Adding a service reference generated a nice proxy class for me. I'd like to add ///<summary> style documentation to this. If the service reference is updated, all my shiny comments are gone. Is there any solution to this? -Edoode ...

What's the best way to specify a proxy with username and password for an **https** connection in python?

I read somewhere that currently urllib2 doesn't support authenticated https connection. My proxy uses a basic authentication only, but how to open an https based webpage through it . Please help me. Thanks. ...

WebClient vs. Proxy Settings - or fun with Download Accelerators

I have a relatively simple feature that uses the WebClient class to perform an HTTPS POST to a web server. This code works reliably but encounters problems when using the EarthLink or AT&T download accelerator feature. The download accelerator works by changing the dial-up connection's proxy settings to specify localhost:8080 for th...

Is there an HTTP proxy tool that can substitute browsed content?

What I'm looking for is some sort of a proxy tool that will allow me to specify a local file to load instead of one specified in the web page that is being browsed. I have tried Burp Suite which is almost working - it allows us to intercept a file and replace it by pasting the contents of the file we are swapping in into an input field. ...

Using Apache proxy to foward traffic to tinyproxy

I need to find a way to proxy some traffic on port 80 to tinyproxy running on a separate port. We have a client working behind a very strict firewall with only port 80 open (and cannot get to sites like meebo.com, etc). I was hoping I could create a CNAME to our domain and a virtual host on apache, catch the request for that new CNAME an...

Create Dynamic Proxies objects

Is there a way to create WCF proxy objects on the fly without using codedom? By on the fly I mean during runtime. So lets say I have a smart client application that is accessing a WCF service. The Data Contract for the WCF service is changed while the client is running. I want to dynamically create a new proxy object that reflects the ch...

ninject Linfu databound proxy object.

I have the following scenario. I have a ViewModel object (It's just a regular object, that impliments INotifyPropertyChanged). I'm binding this object to a view, written in WPF. When I bind it it works fine, events fire, and things are updated, perfect!!! Now I've tried to introduce some validation into the object, I'm checking argum...

How to build a kind of firewall.

Actually what i am trying to build is like a kind of firewall. It should be able to get to know all the requests going from my machine. It should be able to stop selected ones. I am not sure how to even start about with this. I am having VS 2008/2005 with framework 2.0. Please let me know if there is any particular class i can start with...

Error Code: 502 Proxy Error. The ISA Server denied the specified Uniform Resource Locator (URL). (12202)

I am getting above error in some machines but not in some machines while accessing the documents. ...

Proxy caching to make cheap wimax useful

Through my job, I can get cheap wimax but there’d be a bandwidth limit of 200MB/month I often work on personal programming projects on the train to work. For this, I generally don’t need web access and even when I do need access; it’s usually for pages I’ve already visited. Is there a way to cache my web visits in a way that’s relativ...

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 authentication I want to just use the default credentials... WebRequest.DefaultWebProxy.Credentials = CredentialCache.DefaultCredentials; Otherwise I'll just simply make the call, It would be very nice to determine if the auth is ...

Git error: fatal: unable to connect a socket (Invalid argument)

I've got msysGit (Git on Windows) working just fine on my home machine, but at work, where we are behind a Microsoft ISA proxy, I get the following error when I do a git clone: H:\>git clone git://github.com/akitaonrails/vimfiles.git Initialized empty Git repository in H:/vimfiles/.git/ github.com[0: 65.74.177.129]: errno=Invalid argume...

Small SSL offloading proxy for windows

I'm working on a service where in production, we're going to use hardware load balancers with SSL offloading capabilities. However our dev environments don't have this capability, but I want to keep the configuration as close as possible to how it runs in production. Additionally, even for testing, the sites need to be SSL protected(t...

Joining Binary files that have been split via download

Hi I am trying to join a number of binary files that were split during download. The requirement stemmed from the project http://asproxy.sourceforge.net/. In this project author allows you to download files by providing a url. The problem comes through where my server does not have enough memory to keep a file that is larger than 20 me...

How to implement custom proxy server?

Ultimately, I want to block downloads in .NET WebBrowser control, effectively restricting it to displaying HTML, images, scripts and the like, but never, ever display a "Save as" dialog to the user. The solution proposed in an answer to that question was to hook up a custom proxy server that checks the responses and filters out anything...

What is the shortest way to implement a proxy or decorator class in c#?

When you have a class car that implements IVehicle and you want to wrap it in a decorator that forwards all calls to car and counts them, how would you do it? In Ruby I could just build a decorator without any methods and use method_missing to forward all calls to the car object. In Java I could build a Proxy object that runs all code ...

nginx as mail proxy

I am trying to setup nginx as mail proxy. All i want is to let nginx receive the mail and forward it to a script. Is this set possible or should i only use sendmail for that. ...