GOA goa = GOAHelper.narrow(poa);
final String servantName = args[0];
Class<?> servantClass = TestUtils.classForName(servantName);
Servant helloServant = ( Servant ) servantClass.newInstance();
byte[] oid = poa.activate_object(helloServant);
goa.associate_reference_with_id(helloGroup,oid);
String groupURL = miopURL + ";" + CorbaLoc.generateCorbaloc (orb, helloServant._this_object());
System.out.println("SERVER IOR: "+groupURL);
TestUtils.getLogger().debug ("Using IOR: " + groupURL);
System.out.flush();