for (File f : SERVER_PORTS_DIR.listFiles()) {
LineNumberReader reader = new LineNumberReader(new FileReader(f));
int port = Integer.parseInt(reader.readLine());
System.out.println("Validating java client to "+
f.getName()+" - " + port);
Transceiver client = new SocketTransceiver(
new InetSocketAddress("localhost", port));
proxy = (Simple)SpecificRequestor.getClient(Simple.class, client);
TestProtocolSpecific proto = new TestProtocolSpecific();
proto.testHello();
proto.testEcho();