SOAP_Socket
List the sockets that should be monitored for SOAP requests.
Synopsis
or
|
SOAP_Socket [address:]port
|
The default is 7780 (on the localhost).
Scope
This directive is only available for use in the global
(interchange.cfg) configuration file,
and will affect all websites running under the Interchange installation.
It will not work in a website's local (catalog.cfg)
configuration file.
Description
This directive specifies the Internet-domain sockets and/or UNIX-domain
socket files upon which Interchange should listen for SOAP requests.
The list should be space or comma-separated.
Each entry is considered to be a UNIX-domain socket file if it contains
"/" anywhere in its path.
Any other specification is considered an Internet-domain socket,
and must be be either "address:port" or just "port".
The (optional) address must be a dotted-quad IP address that is
valid on the server.
127.0.0.1 (localhost) is assumed
if no address is specified.
The port is expected to be a positive integer that relates to
an unused port on the specified IP address (or localhost).
|
Note
If you specify the use of a UNIX-domain socket file then be sure
to read the SOAP_Perms global
configuration directive's documentation.
|
Examples
Declaring a UNIX-domain socket file
|
SOAP_Socket etc/socket.soap
|
Declaring multiple sockets
SOAP_Socket <<EOS
172.16.1.1:7770
127.0.0.1
etc/socket.soap
EOS
|