Ask a Question related to PERL Modules, Design and Development.
-
neilx #1
HTTP::Proxy and not using 127.0.0.1
I am getting great results with HTTP::Proxy - as long as I use
127.0.0.1 as the proxy address in a browser on the same machine.
I would like to have a lan-available proxy so have tested with using
the machine ip it is running on: 192.168.0.73, but the proxy doesn't
get contacted, even by a browser on the local machine.
I feel sure this is an easy problem, but the things I have tried so far
haven't fixed it for me:
my $proxy = HTTP::Proxy->new( PeerAddr =>'192.168.0.73',port => 8080 );
my $proxy = HTTP::Proxy->new( LocalAddr=>'192.168.0.73',port => 8080 );
my $proxy = HTTP::Proxy->new( MultiHomed =>1,port => 8080 );
Any suggestions gratefully received.
If it matters, I am using a WinXP machine with Activestate ActivePerl
5.8.8 build 816. The MS-Firewall has port 8080 unblocked.
Neil
neilx Guest
-
HTTP tunneling and reverse proxy server
We're currently using Windows Media Services (WMS) to stream video on our website. There is an option WMS to use the HTTP protocol and to specify... -
HTTP::Proxy - how to detect start and end of URL fetch
Inside HTTP::Proxy, is there a way to detect (via callback) when the fetch of the URL begins and ends? aTdHvAaNnKcSe -
Using HTTP::Proxy
I am having trouble getting this to work. Can anyone tell me what I am doing wrong? This is simple test code. use HTTP::Proxy; use... -
HTTP::Proxy::BodyFilter::Adnix 0.01 released on CPAN
HTTP/Proxy/BodyFilter/Adnix version 0.01 ======================================== This class implements a HTTP::Proxy body filter which blocks... -
Using an HTTP Proxy
Hi all, I'm trying to write a PHP script that will grab a web page through a proxy server. From what I understand a standard HTTP (1.1)... -
sam.bartlett@gmail.com #2
Re: HTTP::Proxy and not using 127.0.0.1
If you haven't already, check the firewall on the remote machine.
It's probably blocking incoming connections on that port.
sam.bartlett@gmail.com Guest
-
neilx #3
Re: HTTP::Proxy and not using 127.0.0.1
Just cracked it:
my $proxy = HTTP::Proxy->new( host=>'192.168.0.73',port => 8080 );
neilx Guest



Reply With Quote

