in reply to XML-RPC timeout ?

I am not much into OO Perl (my OO stems from other languages) so with the risk of talking complete BS:

Frontier::Daemon is a subclass of HTTP::Daemon, which is a subclass of IO::Socket::INET. Can’t you set the Timeout value for IO::Socket::INET?

Replies are listed 'Best First'.
Re^2: XML-RPC timeout ?
by Anonymous Monk on Jul 22, 2008 at 12:38 UTC
    Any idea how would I set that value after creating and starting my server?

      IO::Socket::INET is built upon the IO::Socket interface and inherits all the methods defined by IO::Socket.

      IO::Socket has the method timeout(value) Set or get the timeout value associated with this socket.

      If called without any arguments then the current setting is returned. If called with an argument the current setting is changed and the previous value returned.

      So I sort of assumed you can use this. Let’s not forget I am just a novice ;-) Where are the experienced monks when you really need them?

      BTW I am reading awful things about Timeout: See http://www.webmasterworld.com and http://www.dbforums.com

      Hope this helps