in reply to Re^4: LWP and IO::Socket often said to me, "Can't locate object method" ....
in thread LWP and IO::Socket often said to me, "Can't locate object method" ....

I use "IO::Select" and/or "LWP" at fastcgi, daemon modules, so if these error occur, these error last unless fcgi/daemon restarts..

Ah hah. Likely, some other module is requiring IO::Select for you, but not always but only sometimes, depending on the kind of request that comes in. So I can only recommend you actually put use IO::Select; in your code, and also use URI; if you use either of them anywhere.

Replies are listed 'Best First'.
Re^6: LWP and IO::Socket often said to me, "Can't locate object method" ....
by trad-ex (Initiate) on Oct 15, 2008 at 02:13 UTC
    Hi Corion,
    Thanks a lot for your recommendation.

    I'll try it, and report you the consequences of this...