#include "Hello.h" #include "ace/OS_NS_stdio.h" int ACE_TMAIN(int argc, ACE_TCHAR *argv[]) { try { CORBA::ORB_var orb = CORBA::ORB_init (argc, argv); CORBA::Object_var poa_object = orb->resolve_initial_references("RootPOA"); PortableServer::POA_var root_poa = PortableServer::POA::_narrow (poa_object.in ()); if (CORBA::is_nil (root_poa.in ())) ACE_ERROR_RETURN ((LM_ERROR, " (%P|%t) Panic: nil RootPOA\n"), 1); PortableServer::POAManager_var poa_manager = root_poa->the_POAManager (); Hello *hello_impl = 0; ACE_NEW_RETURN (hello_impl, Hello (orb.in ()), 1); PortableServer::ServantBase_var owner_transfer(hello_impl); poa_manager->activate (); PortableServer::ObjectId_var obj_id = root_poa->activate_object (hello_impl); CORBA::Object_var obj_var = root_poa->id_to_reference (obj_id.in ()); PortableServer::ObjectId_var new_obj_id = root_poa->reference_to_id (obj_var.in ()); // Invoke reference_to_servant(). Should retrieve servant. PortableServer::ServantBase_var servant = root_poa->reference_to_servant (obj_var.in ()); // Assert correctness. ACE_ASSERT (hello_impl == servant.in()); root_poa->deactivate_object (new_obj_id.in ()); orb->destroy (); } catch (const CORBA::Exception& ex) { ex._tao_print_exception ("Exception caught:"); return 1; } return 0; }