Questions tagged [proxies]
215 questions
0
votes
2 answers
Is there a Published Reusable Object Model of the web - The Correct 'Domain Language' / Terminology for an http request
I have a website which hosts web documents & web applications and also acts as an origin server for documents and applications that are served to a client via a proxy web site.
I'm finding it quite difficult to find the correct names to model the…

JW.
- 4,821
- 5
- 43
- 60
0
votes
1 answer
how to detect if a network timeout received is due to the request-endpoint or something intermediate (such as a http proxy)
As part of writing a crawler (in Node.js but really not the point), I sometimes receive timeouts and other network exceptions. Some exceptions (like http errorcodes) can be correctly attributed to the the targetted request-endpoint. Others, like…

Geert-Jan
- 18,623
- 16
- 75
- 137
0
votes
1 answer
Doctrine Mongodb ODM persist and flush a proxy document
I was wondering if it's possible to persist and flush a proxy document.
If we clone a proxy document (don't forget to implement a __clone method to reset the id parameter) and persist and flush will it be insert or not ?
This case might happen if we…

Particule42
- 25
- 1
- 6
0
votes
2 answers
How do I navigate to a website using a proxy?
I've looked through google, and I saw things like WebRequest, WebProxy, etc. There were a lot of pages, but I don't get it. So let's say I have a TextBox with the URL in it, and another TextBox with the proxy in it. How would I make it so that I…

Minicl55
- 947
- 5
- 14
- 21
0
votes
4 answers
Waiting on GET response
I am having a problem where my code waits a long period of time on
HttpWebResponse response = (HttpWebResponse)request.GetResponse(); What am I doing wrong? Sometimes I get bad proxies from my queue so I want to be able to timeout and skip.
…

Charlie Morrison
- 41
- 1
- 10
-1
votes
0 answers
API Requests Python - Same Code, Different Machines, Machine 1 OK, Machine 2 Error 403
I'm trying to run an API requests using python in two machines. In one machine, I only pass the URL (this URL has a "?" parameter) and works fine, with HTTPBasicAuth, POST.
In the other machine from another firm, same code, it gets…
-1
votes
1 answer
How to check if internet connection from is proxy is lost or present?
I am building a Selenium bot and have to use that script multiple times in a go. The problem with the script is that the proxy I am using rotated itself in every 10-12 mins and when it rotates, the internet connection is lost for 10-15 seconds which…

Sarvesh Dubey
- 11
- 4
-1
votes
1 answer
Can the Google +1 Javascript API be used in a way that requests are sent via visitor's PC/IP, and not my web server?
Google +1 API reference: http://code.google.com/apis/+1button/
What I want to do is use the Google+1 API on my website that contains pages with links to other websites. When a visitor clicks the +1 button next to a link they like, I want the…

Kane
- 899
- 2
- 15
- 35
-1
votes
1 answer
Cannot proxy requests in python using requests module
I'm trying to build a basic proxy checker utility in python. This is what I have right now:
import requests
from bs4 import BeautifulSoup
currentip=""
originalip=""
isProxied=False
proxies=["104.236.54.196:8080", "187.62.191.3:61456",…

dbredred
- 17
- 2
-1
votes
1 answer
What is meant by 'There is a type of Spring proxy that can replace the object being returned by the method'?
I am doing a mock exam where I didn't quite understand one of the answers which lacked an explanation of why it was correct.
(Edited from here downward by kriegaex, adding the question from the below comment and some formatting and rephrasing in…

Bart Boersma
- 244
- 2
- 13
-1
votes
1 answer
Using Cert.pem as Client cert in VB.NET .NET 4.61 for a forward proxy
I've been trying to pass a custom cert within a class function and I'm clearly doing something wrong because it fails on handshake. Please see the code below.
Public Shared Async Function RevealViaForwardProxy(ByVal redactData As String) As Task(Of…

Joe
- 39
- 7
-1
votes
1 answer
Manually set a proxy as dead using scrapy-rotating-proxies package
I am using a proxy rotation in my project to prevent being banned from a website, I have to scrape a list of urls http://website/0001 to http://website/9999 and when it's detect that I am scraping they send me to the website/contact.html.
I already…

Gian Carlo
- 3
- 1
- 3
-1
votes
1 answer
Change proxy after x many loops
I have a list of let's say 100 URLS.
I want to change IP after every 10 URLS.
Let's say I have my own proxies that I'd like to use after each 10 URLS.
How would I use that proxy in my requests - ?
list = [100URLS items]
proxies…

Biplov
- 1,136
- 1
- 20
- 44
-1
votes
2 answers
Use of proxies in PhantomJS?
How would I utilize proxies in phantomJS? I have tried doing something like this:
--proxy 127.0.0.1:80
But I'm not sure if it's the right command or if it worked at all. Is this even the correct syntax? Thanks.

Aero
- 117
- 2
- 8
-1
votes
1 answer
Use proxy with cURL?
I have this issue where I'm going to need to change my IP every 200 cURL requests - so obviously proxies come to mind. The issue is I'm wondering how I where I would find these proxies. Any solutions? Thanks!
UPDATE:
Okay, so for future visitors of…

Grant
- 229
- 5
- 13