Name

SOAP — enable handling of SOAP RPC requests

SYNOPSIS

No | Yes

DESCRIPTION

Enable handling of SOAP RPC requests.

DIRECTIVE TYPE AND DEFAULT VALUE

Global directive,
Catalog directive

EXAMPLES

Example: Enabling SOAP RPC protocol

SOAP Yes

NOTES

AVAILABILITY

SOAP is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Config.pm
Line 448

['SOAP',            'yesno',            'No'],

Source: lib/Vend/Config.pm
Line 685

['SOAP',       'yesno',       'No'],

Source: lib/Vend/Config.pm
Line 5434 (context shows lines 5434-5446)

sub parse_yesno {
my($var, $value) = @_;
$_ = $value;
if (m/^y/i || m/^t/i || m/^1/ || m/^on/i) {
  return 1;
}
elsif (m/^n/i || m/^f/i || m/^0/ || m/^of/i) {
  return 0;
}
else {
  config_error("Use 'yes' or 'no' for the $var directive\n");
}
}

AUTHORS

Interchange Development Group

SEE ALSO

SOAP_StartServers(7ic), SOAP_Perms(7ic), SOAP_Socket(7ic), SOAP_Control(7ic), SOAP_MaxRequests(7ic), SOAP_Action(7ic)

DocBook! Interchange!