in EEnvironment.java:
/* Turn on the comm system... */
myProxyManager = new ProxyManager(myRootStateBundle.vatIdentity,
searchPath,
myRootStateBundle.registrationTable,
getProperty("e.ListenAddress"));
now in ConnectionsManager.java:
//Create the listen thread
if (null == listenAddress) {
//XXX Commented out by MarkM. Bill? Chip?
//listenAddress = System.getProperty("ListenAddress");
if (null == listenAddress) {
//Listen on any available port
listenAddress = "localhost:0";
}
}
---------------------------
still in EEnvironment.java:
/* Make sure there's a search path to us */
used to be in ConnectionsManager.java:
String flattenedSearchPath = props.getProperty("e.SearchPath",
//XXX Default is a hack for testing under Cafe
"localhost:4567;localhost:4568");
//XXX should use the e properties object (as held by the EEnvironment)
myLocalFlattenedSearchPath = System.getProperty("SearchPath",
//XXX Default is a hack for testing under Cafe
"localhost:4567;localhost:4568");
-------------------------
Cheers, --MarkM