SOAP_Socket — specify name of SOAP RPC socket file
The directive specifies the Inet and Unix sockets Interchange should listen on for SOAP RPC requests.
The list should be space-separated. Each entry is considered to be
an Unix socket if it contains "/" somewhere in its
path. Any other specification is considered an Inet socket, and can be
in form of , where the IP address and the colon are optional.
NNN.NNN.NNN.NNN:PPPP
The default value is Inet socket on port 7780, if
SOAP is enabled.
Interchange 5.9.0:
Source: lib/Vend/Config.pm
Line 3780 (context shows lines 3780-3800)
sub parse_array {
my($item,$settings) = @_;
return '' unless $settings;
my(@setting) = grep /\S/, split /[\s,]+/, $settings;
my $c;
if(defined $C) {
$c = $C->{$item} || [];
}
else {
no strict 'refs';
$c = ${"Global::$item"} || [];
}
for (@setting) {
check_legal($item, $_);
push @{$c}, $_;
}
$c;
}