{
ORB orb = setup.getClientOrb();
String ior = setup.getServerIOR();
org.omg.CORBA.Object ref = orb.string_to_object( ior );
// Use an unchecked narrow so it doesn't do an is_a call remotely.
server = GreetingServiceHelper.unchecked_narrow(orb.string_to_object(miopURL));
String s = "Oneway call";
server.greeting_oneway(s);
//Wait for the server receives the first request.