proxy

Wille php copy() work for a person viewing the site who has the site which i'm copying from blocked?

Say I use php copy(), to get a file from a site. And then a user who is using a proxy filtering service that has that site blocked, will the site still be able to copy that file for the user? If not, would a cron job be able to? And is the same for file_get_contents? Cheers ...

How to change firefox proxy from webdriver?

Hello, how can I access Firefox proxy settings from Python Webdriver and change them to make Firefox use modified proxy settings without needing to restart it? ...

Does git clone work through NTLM proxies?

I've tried both using export http_proxy=http://[username]:[pwd]@[proxy] and git config --global http.proxy http://[username]:[pwd]@[proxy]. I couldn't make it work. It looks like git uses Basic authentication: Initialized empty Git repository in /home/.../.git/ * Couldn't find host github.com in the .netrc file, using defaults * About...

Rails: Proxy Pass??

I've got a web-app that I want to migrate to Rails, which is currently just plain HTML with an Apache proxy to another server, running a custom database/webserver that serves the site's dynamic content. For the moment, I want to do a staged move, since the content on the proxied server I won't be able to update until I update the static...

Python 3 - pull down a file object from a web server over a proxy (no-auth)

I have a very simple problem and I am absolutely amazed that I haven't seen anything on this specifically. I am attempting to follow best practices for copying a file that is hosted on a webserver going through a proxy server (which does not require auth) using python3. i have done similar things using python 2.5 but I am really coming...

Javascript going through a Proxy

I am working on a project right now that requires some javascript for the proper functionality we are looking for. The problem we are running into is that the clients of this web-based app can only access the site through a proxy server (due to strict policies). This proxy server is stripping the javascript from the page and we are una...

Python Webdriver doesn't wait until the page is downloaded in Firefox when used with proxy

Hello, when I set the Firefox proxy with python webdriver, it doesn't wait until the page is fully downloaded, this doesn't happen when I don't set one. How can I change this behavior? Or how can I check that the page download is over? ...

Suggestion/Opinion on Reverse IP look up for Anonymour proxies

Sometimes it is not possible to find if user is using Anonymous proxy. So i came up with some ideas: Get IP of client, do reverse check and check if it returns a hostname and also get number of any websites hosted on same ip then it could be a proxy connection assuming it is website hosting provider ip. Store ips of hosting providers w...

Writing a proxy in JSP

Hi people! I am trying to write a JavaBean to be used in a JSP, such that when a user writes the url to an external website the bean filters the page before displaying it to the user. Now what I tried to do till now is to download the page using an HTTPUrlConnection, does the filtering, saves the filtered html inside a temporal local h...

WCF Proxy generation

Hi, I'm generating proxy using svcutil tool. My contract methods return objects of particular type. However generated proxy client interface has return value of type object. What is more I get exception with message: System.ServiceModel.FaultException`1[System.ServiceModel.ExceptionDetail] : The formatter threw an exception while tryi...

How to by pass network using WebProxy?

If I want to bypass a Network like 192.168.1.0/24 using webProxy is there any way? WebProxy proxy = new WebProxy(); proxy.ByPassList = ??? ...

Proxy Error? Maybe?

Web Status - Message #1073 Could not send post data to the host, URL = This is what my clients report to me. It appears to me to be a proxy server message but I have searched for this on google and not found anything. They say they are not behind a proxy but ......... Does anyone have any insight on this? thanks ...

using anonymous proxies for parsing strategy?

Dear all, I have a project which parse data in the betting site, sometime it banned my IP, and It's too slow to parse, could anyone show me list of proxies site so that I can parse. Sometime my client come form Vietnam, sometime from US, so I need proxies not only for speeding but also for banning ip. Thanks all, Nguyen ...

simple udp proxy solution

Hi all, I am looking for solution that can proxy my udp packets. I have one client sending udp packets to a server. Connection between them is very bad and I get lot of packet loss. One solution is to have a new proxy server that will just redirect all packets from client to destination server. The new proxy server has good connection...

java webservice generated proxy problem in c#.

Hi. I create the webservice from netbean as java webservice. when i Applying the web reference to my asp.net web application. it generate proxy . but i found that the methods also convert in classes.Also i found the method as methods in class that i define in web service...I have web method that have the return type int (in java). but i...

Python: urllib2 multipart/form-data and proxies

The Objective: A script which cycles through a list of proxies and sends a post request, containing a file to a PHP page on my server, which then calculates delivery time. It's a pretty useless script, but I am using it to teach myself about urllib2. The Problem: So far I have got multipart/form-data sending correctly using Poster, but ...

Is there any library that can provide access to a web server running on a device behind firewall?

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

FTP connection and upload under proxy using command prompt and Putty

Dear all, I have a small access database which makes CSV file that should be uploaded on a remote FTP server. I need to make automated process to upload a file using command prompt (which I access through VBA shell). Issue is that I can access internet only via proxy, and can't seem to find any resource online on how to set up putty (...

Sharing Collection Data Contracts

I have some WCF services and have separated out the data contracts for these services into their own assembly. I then have a client of the services that references the data contracts assembly. I have turned on the option to Reuse types in referenced assemblies. This works, but not for collections. The proxy generator instead generates i...

java socket and Proxy authentication

I need a Java Socket client class that supports authenticated socks proxy, java.net.Proxy only supports one set of credentials for the whole JVM. I have multiple proxies each with different logins. here's what java's proxy Authenticator does, only one login for the whole JVM. how do I have multiple? Authenticator.setDefault(new Authe...