Start XSDB command server.
Syntax
xsdbserver start [options]
Start XSDB command server listener. The XSDB command server allows external processes to connect to XSDB to evaluate commands. The XSDB server reads commands from the connected socket one line at a time. After evaluation, a line is sent back starting with 'okay' or 'error' followed by the result or error as a backslash quoted string.
Options
Option | Description |
---|---|
-host <addr>
|
Limits the network interface on which to listen for incoming connections. |
-port <port>
|
Specifies port to listen on. If this option is not specified, or if the port is zero, a dynamically allocated port number is used. |
Returns
Server details are displayed on the console if the server is started successfully. Error string, if a server has been already started.
Examples
xsdbserver start
Start XSDB server listener using dynamically allocated port.
xsdbserver start -host localhost -port 2000
Start XSDB server listener using port 2000 and only allow incoming connections on this host.