http://www.perlmonks.org?node_id=722407


in reply to Daemon problem: Can't locate object method "configure" via package "Net::HTTP"

In the first error you listed, the Net::HTTP package wasn't defined so the method lookup failed. Other than a compilation failure, what could cause the package to go missing? LWP::Protocol::http requires Net::HTTP and would fail if compilation of that module failed, no?

Is it possible that you have an eval {} wrapper somewhere that's keeping your code from acting on an exception, or perhaps a __DIE__ handler that's doing the wrong thing?

  • Comment on Re: Daemon problem: Can't locate object method "configure" via package "Net::HTTP"