{
Properties props = new Properties();
props.put("jacorb.connection.client.max_receptor_threads", "1");
ORB orb = newORB(props);
BasicServer server1 = BasicServerHelper.narrow(orb.string_to_object(server1IOR));
assertEquals(10, server1.bounce_long(10));
server1._release();
// give the ConsumerReceptorThread some time to finish its work
Thread.sleep(1000);
BasicServer server2 = BasicServerHelper.narrow(orb.string_to_object(server2IOR));
assertEquals(10, server2.bounce_long(10));
server2._release();
}