1 #include "Server_Task.h"
5 #include "ace/Manual_Event.h"
7 Server_Task::Server_Task (const ACE_TCHAR
*output
,
10 ACE_Thread_Manager
*thr_mgr
)
11 : ACE_Task_Base (thr_mgr
)
14 , sorb_ (CORBA::ORB::_duplicate (sorb
))
19 Server_Task::svc (void)
23 CORBA::Object_var poa_object
=
24 this->sorb_
->resolve_initial_references("RootPOA");
26 PortableServer::POA_var root_poa
=
27 PortableServer::POA::_narrow (poa_object
.in ());
29 if (CORBA::is_nil (root_poa
.in ()))
30 ACE_ERROR_RETURN ((LM_ERROR
,
31 " (%P|%t) Panic: nil RootPOA\n"),
34 PortableServer::POAManager_var poa_manager
=
35 root_poa
->the_POAManager ();
38 ACE_NEW_RETURN (hello_impl
,
39 Hello (this->sorb_
.in (),
43 PortableServer::ServantBase_var
owner_transfer(hello_impl
);
45 PortableServer::ObjectId_var id
=
46 root_poa
->activate_object (hello_impl
);
48 CORBA::Object_var object
= root_poa
->id_to_reference (id
.in ());
50 Test::Hello_var hello
=
51 Test::Hello::_narrow (object
.in ());
53 CORBA::String_var ior
=
54 this->sorb_
->object_to_string (hello
.in ());
56 // Output the IOR to the <this->output_>
57 FILE *output_file
= ACE_OS::fopen (this->output_
,
60 ACE_ERROR_RETURN ((LM_ERROR
,
61 "Cannot open output file for writing IOR: %s",
65 ACE_OS::fprintf (output_file
, "%s", ior
.in ());
66 ACE_OS::fclose (output_file
);
68 poa_manager
->activate ();
70 // Signal the main thread before we call orb->run ();
75 ACE_DEBUG ((LM_DEBUG
, "(%P|%t) server - event loop finished\n"));
77 catch (const CORBA::Exception
& ex
)
79 ex
._tao_print_exception ("Exception caught:");