Ask a Question related to PERL Miscellaneous, Design and Development.
-
Zeke Koos #1
How to use different proxies for LWP::Parallel requests
How do I use a different proxy for each request when using
LWP::Parallel ?
I use the following subroutine to register the requests, but when I
call $ua->wait(20) all the requests go through the last proxy
registered.
Please help!
thanks
Koos
sub register_request {
my ($url,$proxy) = @_;
$ua->max_hosts(25);
$ua->agent('Mozilla/4.5');
$ua->proxy('http', 'http://'.$proxy);
my $req = HTTP::Request->new('GET', $url);
$ua->register ($req);
}
Zeke Koos Guest
-
Coldfusion and proxies
I need to know if we have to configure Cold Fusion to use an external web proxy to perform it's job (host web pages), since port 80/443 will be... -
Webservice Proxies With VS.net
Has anyone seen any articles or instructions for building webservice proxies with VS.net? -
different proxies and multiple requests in LWP::Parallel
I've written the following script to verify a list of proxies in a seperate file. It works fine except that I can't get LWP::Parallel to use... -
Help with cache-proxies
Hi to all, i have a big problem, i use a phpBB forum in my page, here in Spain the ISP's use a cache proxie system. And when change anything in... -
filling out forms through proxies with php
i'm connecting to the internet via a proxy, and am having problems filling out forms... below is the code i have, and below that is the http...



Reply With Quote

