#include "Server_Task.h" #include "Roundtrip.h" Server_Task::Server_Task (CORBA::ORB_ptr sorb, ACE_Manual_Event &cond, ACE_Thread_Manager *thr_mgr) : ACE_Task_Base (thr_mgr), cond_ (cond), sorb_ (CORBA::ORB::_duplicate (sorb)) { } Test::Roundtrip * Server_Task::get_reference () { return Test::Roundtrip::_duplicate (this->rt_var_.in ()); } int Server_Task::svc () { try { CORBA::Object_var poa_object = this->sorb_->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 (); Roundtrip *rt_impl; ACE_NEW_RETURN (rt_impl, Roundtrip (this->sorb_.in ()), 1); PortableServer::ServantBase_var owner_transfer(rt_impl); this->rt_var_ = rt_impl->_this (); if (CORBA::is_nil (this->rt_var_.in ())) { ACE_ERROR_RETURN ((LM_DEBUG, "Error activating Test::Roundtrip reference\n"), 1); } poa_manager->activate (); ACE_DEBUG ((LM_DEBUG, "Server_Task: Object Activation complete\n")); // Signal the main thread to spawn the client this->cond_.signal (); this->sorb_->run (); root_poa->destroy (true, true); this->sorb_->destroy (); } catch (const CORBA::Exception& ex) { ex._tao_print_exception ("Exception caught:"); return 1; } return 0; }