Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
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 ); $proxy->start(); 1;
20080423 Janitored by Corion: Added formatting, code tags, as per Writeup Formatting Tips
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: HTTP::Proxy not producing any output
by pc88mxer (Vicar) on Apr 23, 2008 at 23:25 UTC |