0
votes
1answer
20 views
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 p …
0
votes
2answers
44 views
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 = ???
0
votes
1answer
13 views
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 l …
0
votes
2answers
27 views
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 …
1
vote
2answers
39 views
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 …
0
votes
0answers
21 views
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 u …
0
votes
2answers
31 views
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- …
0
votes
1answer
22 views
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 behav …
0
votes
1answer
29 views
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 host …
0
votes
1answer
13 views
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 …
0
votes
1answer
23 views
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 s …
0
votes
1answer
18 views
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?
1
vote
1answer
29 views
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 f …
0
votes
2answers
27 views
How do I compare an object with an NHibernate proxy object?
I'm using Compare .NET Objects to test whether my POCOs are persisted correctly to a test database. Let's take an example POCO:
public class NoahsArk
{
public virtual Noah Noa …
0
votes
3answers
121 views
How to write a http1.0 proxy server in c in linux?
I must develop proxy server that work with only HTTP 1.0 in Linux and by c .
I need some hint to start developing .
