proxy

Sharing proxy server connection over Wi-Fi on Mac OS X/Linux?

I have a subscription to a paid HTTP proxy service, which requires login and password to be used. I want to use this service with my iPhone, but unfortunately the device cannot pass the authentication stage. However, both my Mac OS X powered laptop and Debian box have the ability to successfully connect trough the paid proxy. Is it possi...

API for proxyfying specific application

I need to write an application that will proxify some other application (redirect all network traffic to other proxy server). Just like FreeCap, ProxyCap, etc. Can anyone here points me to API I should be using? Preferably the API that will work under 2k, XP, Vista and W7. ...

Changing DefaultWebProxy causing WebRequests to time out

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 b...

Query configuring IE to use a proxy server

If i configure internet explorer to use a proxy server, Does the website which i surf, will be hidden from the system administrator of my lan? Will my ip will hidden to the website administrators of the browsing website ? ...

How can I interface with a third party module that only provides JTAPI API From C++?

I'm supporting a large system written in C++ and we now have a requirement for our application to talk with a third party system which only provides a JTAPI interface. It would appear that I am stuck writing a JTAPI proxy in Java that talks JTAPI on one side and some more language-neutral API on the other. However, this feels like it sho...

http proxy for debugging purposes

I am looking for a preferably free http proxy to be used for debugging purposes. I already have firebug and firebug lite in my tool set, but firebug lite won't let me see ajax requests in internet explorer. I thought an intercepting proxy might do the feat ...

Rails applicaiton behing proxy

I'm implementing Rails alumni application with Facebook API support. One of the requirements is to post a message from the application directly to facebook wall. Everything seems to work fine, however there is one issue which I can't fix. When I'm working at the University, I got an error "No connection could be made because the target m...

nhibernate Operation could destabilize the runtime.

Locally my site works, but at host I am getting the error: "Operation could destabilize the runtime." I am using nhibernate. I am using the repository pattern. [VerificationException: Operation could destabilize the runtime.] CategoryProxy..ctor() +6 [TargetInvocationException: Exception has been thrown by the target of an invocat...

Making one copy of complex type from 2 webservices.

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. Now, I create the 2 proxy classes of these 2 webservices. Which means the same type gets generated twice. How can I make sure that in 2 proxies only one copy of...

How can urllib2 / httplib talk HTTP 1.1 for HTTPS connections via a Squid proxy ?

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. How can I persuade Squid to talk 1.1 to the destination server? ...

remote and dynamic proxy

i understand that ,once, developing remote proxy included generating stub/skeleton , though today this is no longer needed thanks to reflection. (dynamic proxy) 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 (...

Where do I specify proxy credentials in my WCF client?

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. WSHttpBinding wsBinding = new WSHttpBinding(); wsBinding.BypassProxyOnLocal = true; EndpointAddress endpoint = new EndpointAddress("http:/...

What functions are necessary to program a PHP script that can interact with an AJAX website like a normal browser?

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

Urllib2 Send Post data through proxy

I have configured a proxy using proxyhandler and sent a request with some POST data: 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_opene...

How To Authenticate Socks 5 Proxies Inside PAC (Proxy Auto Config) Files

How can you setup PAC files to use SOCKS proxies with authentication? Using this simple PAC file as an example: function FindProxyForURL(url, host) { return "SOCKS 69.123.133.75:7257;"; } How would you connect to that socks proxy using a username and password? ...

job scheduling in linux

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?. ...

Creating robust HTTP connection for dummy users with WinINET

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 us...

Ruby - Socks4 proxy with WWW::Mechanize and NET::HTTP::GET

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. 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. Any ideas how ...

Socket Proxy Server

Suppose Client A connects though TCP/IP Sockets to Server B Is it possible to create a Proxy Like Server thing to do this: 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 res...

How to handle proxies when using QNetworkAccessManager

Hey everyone, I'm facing some trouble when using the class QNetworkAccessManager. I use it to download a simple file from an url like "http://www.foo.com/bar/foobar.txt". When I start a download I use : m_pNetworkReply = m_pNetworkAccessManager->get(QNetworkRequest(m_CurrentFileToDownload)); Then I connect a few slots to receive, f...