in reply to Intercepting the HTTP::Request
is what you want ? Another possible problem might be that you suppose that WWW::Mechanize's STDOUT (where Dumper would write to) is something that comes in handy to you. That isn't really granted ;)... package WWW::Mechanize; sub _make_request { my($self) = shift; my $req = $self->SUPER::request(@_); print Dumper $req; return $req } ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Intercepting the HTTP::Request
by rootcho (Pilgrim) on May 16, 2007 at 16:56 UTC |