please note any problems, I'll try to add solutions here.
remember to synchronize your system clocks. This can be done by:
a local time server is better than the apple time server. if you cannot sync the time, you can set the server latency to nil
. This will break the pattern's functionality though.
s = Server("serverName", NetAddr(hostname, port));
s.options.maxLogins = 16; // or the maximum number of participants in the network
s.boot; // you cannot directly boot a remote server instance, but this initializes everything that is needed
see Server
s.boot; // this will initialize the tree and start notification
// if needed, a server window can be created:
s.makeWindow;
xxxxxxxxxx
p = ProxySpace.push(s);