Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
My error message was: Can't locate HTTP/Proxy/HeaderFilter/standard.pm in @INC (@INC contains: C:/Perl/lib C:/Perl/site/lib .) at C:/Perl/site/lib/HTTP/Proxy.pm line 28. ..... Any ideas? Thanks a lot, Julia#!/usr/bin/perl use HTTP::Proxy; use HTTP::Recorder; my $proxy = HTTP::Proxy->new(); # create a new HTTP::Recorder object my $agent = new HTTP::Recorder; # set the log file (optional) $agent->file("/tmp/myfile"); # set HTTP::Recorder as the agent for the proxy $proxy->agent( $agent ); # start the proxy $proxy->start(); 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Using HTTP::Proxy
by diotalevi (Canon) on Jun 16, 2004 at 20:03 UTC | |
by Anonymous Monk on Jun 16, 2004 at 20:12 UTC | |
by diotalevi (Canon) on Jun 16, 2004 at 20:23 UTC | |
by Anonymous Monk on Jun 16, 2004 at 21:02 UTC | |
|
Re: Using HTTP::Proxy
by Anonymous Monk on Jun 16, 2004 at 21:11 UTC |