richill has asked for the wisdom of the Perl Monks concerning the following question:
http://www.perl.com/pub/a/2004/06/04/recorder.html#config
I'm running this code as recorder.pl
#!/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;
But this line confuses me.
Then, instruct your favorite web browser (firefox) to use your new pro +xy for HTTP traffic.
Do I change the manual proxy configuration for HTTP from localhost:8118
to /some_file_path/recorder.pl
I hope you can help with this because it's totally baffling me and taken up loads of time for what seems to be easy.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: HTTP Recorder and proxies
by planetscape (Chancellor) on Aug 21, 2006 at 01:09 UTC | |
|
Re: HTTP Recorder and proxies
by Fletch (Bishop) on Aug 21, 2006 at 01:10 UTC |