<rmi-server host="my.host.com" port="23791" serialize-connection-calls="true|false">
This file contains the configuration for an application-server.

host - Host to bind to, all local hosts is the default.
port - Port to listen to, default is 23791.
serialize-connection-calls - Whether or not to serialize calls from on RMI connection (client or other cluster node). The default is 'false'. Not serializing makes the calls run in parallell, make it better for some apps but adding overhead for others. If 'false' then each call is run in it's own concurrent thread, if 'true' in the same thread.


<server host="the.remote.server.com" password="123" port="23791" username="admin" />
Specifies a remote (point to point) RMI-server to communicate with.

host - Hostname of the remote server.
password - The password to log in with.
port - Port of the remote server, default is 23791.
username - The username to log in with.


<cluster host="230.0.0.1" id="123" password="123abc" port="9127" username="cluster-user" />
Tag that is defined if the application is to be clustered. Used to set up a local multicast cluster. A username and password used for the servers to intercommunicate also needs to be specified.

host - The multicast host/ip to transmit and receive cluster data on. The default is 230.0.0.1.
id - The id (number) of this cluster node to identify itself with in the cluster. The default is based on local machine IP.
password - The password configured for cluster access. Needs to match that of the other nodes in the cluster.
port - The port to transmit and receive cluster data on. The default is 9127.
username - The username configured for cluster access. Needs to match that of the other nodes in the cluster. It is not (and should not be) tied to an existing user/principal within the setup, it is simply used as an authorization token for cluster access.


<log>
Logging settings.

<file path="../log/server.log" />
A relative/absolute path to log events to.

path - The path.


<mail address="my@mail.address" />
A e-mail address to log events to. A valid mail-session also needs to be specified if this option is used.

address - The mail-address.