System.err.println("Test client started");
System.setSecurityManager(new RMISecurityManager());
setEnvironmentForConfig(config);
Registry reg = LocateRegistry.getRegistry();
MyRemoteInterface1 mri = (MyRemoteInterface1) reg.lookup(TEST_STRING_1);
mri.test1();
System.err.println("Test client completed");
}
/**
* Runs test server process.