Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Here is my sample code:
use constant WEBSERVER => 'my-server'; use constant PORT => '1087'; use Frontier::Daemon; my $d = Frontier::Daemon->new( methods => { TestLargeCall => \&TestLargeCall, }, LocalAddr => WEBSERVER, LocalPort => PORT, ); sub TestLargeCall { # process takes more then the default 180 secs }
Thanks
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: XML-RPC timeout ?
by dHarry (Abbot) on Jul 22, 2008 at 11:30 UTC | |
by Anonymous Monk on Jul 22, 2008 at 12:38 UTC | |
by dHarry (Abbot) on Jul 22, 2008 at 13:20 UTC | |
|
Re: XML-RPC timeout ?
by Anonymous Monk on Jul 23, 2008 at 04:29 UTC |