POA system = root.create_POA("system_id_deactivate_2", root.the_POAManager(), policies);
system.the_POAManager().activate();
system.set_servant_manager(new PoaServantActivator());
org.omg.CORBA.Object objectRef = system.create_reference(BasicServerHelper.id());
BasicServer ref = BasicServerHelper.narrow(objectRef);
// Local op; will incarnate the object.
ref.ping();
// Now try deactivating it.
system.deactivate_object (system.reference_to_id(ref));
}