in reply to Parallel Web Agent Problem
Looking at the code for LWP::Parallel::UserAgent, it is a subclass of LWP::UserAgent. The problematic method (_new_response) is defined in LWP::UserAgent but it is not exported (maybe it is in his version) nor is it an object method (it's a plain old subroutine so calling it by $self->_new_response will not work).
You could either
My vote would be to contact the author (his contact info is in the documentation), there may be more going on here and I'm missing something.
-derby
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Parallel Web Agent Problem
by CodeJunkie (Monk) on Mar 11, 2003 at 15:20 UTC | |
|
Re: Re: Parallel Web Agent Problem
by CodeJunkie (Monk) on Mar 11, 2003 at 22:36 UTC |