protected static Transceiver client;
protected static Simple proxy;
@BeforeClass
public void testStartServer() throws Exception {
server = new SocketServer(new SpecificResponder(Simple.class, new TestImpl()),
new InetSocketAddress(0));
client = new SocketTransceiver(new InetSocketAddress(server.getPort()));
proxy = (Simple)SpecificRequestor.getClient(Simple.class, client);
}