3 Hello::Hello (CORBA::ORB_ptr orb
)
4 : orb_ (CORBA::ORB::_duplicate (orb
))
11 ACE_DEBUG ((LM_DEBUG
, "(%P|%t) - Received call back !!!\n"));
12 return CORBA::string_dup ("Hello there!");
18 this->orb_
->shutdown (false);
22 Hello::request_callback (Test::Hello_ptr call_me
)
24 ACE_DEBUG ((LM_DEBUG
, "(%P|%t) - Making call back !!!\n"));
27 CORBA::String_var result
= call_me
->get_string ();
29 catch (const CORBA::Exception
& ex
)
31 ex
._tao_print_exception (
32 "Exception attempting to callback client obj ref:\n");
35 ACE_DEBUG ((LM_DEBUG
, "(%P|%t) - Call back succeeded !!!\n"));