Name

SOAP_MaxRequests — define maximum number of per-server SOAP RPC response deliveries before respawn

SYNOPSIS

count

DESCRIPTION

The directive defines the maximum number of SOAP RPC responses each server instance will carry out before closing down and respawning.

The whole point of a periodic respawn is to prevent accumulation of eventual memory leaks.

The default value is 50. In case the default value is somehow cleared, the hard-coded default is 10.

DIRECTIVE TYPE AND DEFAULT VALUE

Global directive

EXAMPLES

Example: Setting SOAP_MaxRequests

SOAP_MaxRequests 200

NOTES

AVAILABILITY

SOAP_MaxRequests is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Config.pm
Line 456

['SOAP_MaxRequests', 'integer',           50],

Source: lib/Vend/Config.pm
Line 3992 (context shows lines 3992-3999)

sub parse_integer {
my($var, $value) = @_;
$value = hex($value) if $value =~ /^0x[\dA-Fa-f]+$/;
$value = oct($value) if $value =~ /^0[0-7]+$/;
config_error("The $var directive (now set to '$value') must be an integer\n")
  unless $value =~ /^\d+$/;
$value;
}

AUTHORS

Interchange Development Group

SEE ALSO

MaxRequestsPerChild(7ic), SOAP_StartServers(7ic), SOAP_Socket(7ic), SOAP(7ic)

DocBook! Interchange!