Name

SOAP_StartServers — specify number of servers which should be started to handle SOAP RPC requests

SYNOPSIS

count_less_than_51

DESCRIPTION

The directive specifies the number of servers which should be started to handle SOAP RPC requests.

The default is 1. Setting the directive to more than 50 is unreasonable and produces an error.

DIRECTIVE TYPE AND DEFAULT VALUE

Global directive

EXAMPLES

Example: Specifying SOAP_StartServers

SOAP_StartServers 10

NOTES

AVAILABILITY

SOAP_StartServers is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Config.pm
Line 457

['SOAP_StartServers', 'integer',          1],

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

StartServers(7ic), SOAP_Perms(7ic), SOAP_Socket(7ic), SOAP_MaxRequests(7ic), SOAP(7ic)

DocBook! Interchange!