}
};
ServerEndpoint se =
TcpServerEndpoint.getInstance("localhost", 0, sf, ssf);
InvocationLayerFactory ilf =
new BasicILFactory(null, null, PingImpl.class.getClassLoader());
Exporter exporter = new BasicJeriExporter(se, ilf, false, false);
Ping proxy = (Ping) exporter.export(impl);
/*
* Create another proxy that will use a different connection
* than the first (SocketFactory does not override equals).