1 #include "Messenger_i.h"
2 #include "MessengerS.h"
3 #include "ServerInitializer.h"
5 #include "tao/ORBInitializer_Registry.h"
6 // Ensure that the PI_Server library is linked in when building statically
7 #include "tao/PI_Server/PI_Server.h"
11 #include "ace/Get_Opt.h"
13 const ACE_TCHAR
*ior_output_file
= ACE_TEXT ("Messenger.ior");
16 parse_args (int argc
, ACE_TCHAR
*argv
[])
18 ACE_Get_Opt
get_opts (argc
, argv
, ACE_TEXT("o:"));
21 while ((c
= get_opts ()) != -1)
25 ior_output_file
= get_opts
.opt_arg ();
30 ACE_ERROR_RETURN ((LM_ERROR
,
37 // Indicates successful parsing of the command line
42 ACE_TMAIN (int argc
, ACE_TCHAR
*argv
[])
46 PortableInterceptor::ORBInitializer_var orb_initializer
=
47 new ServerInitializer
;
49 PortableInterceptor::register_orb_initializer (orb_initializer
.in ());
52 CORBA::ORB_init (argc
, argv
, "Server ORB");
54 if (parse_args (argc
, argv
) != 0)
57 //Get reference to Root POA
58 CORBA::Object_var obj
= orb
->resolve_initial_references( "RootPOA" );
59 PortableServer::POA_var poa
= PortableServer::POA::_narrow( obj
.in() );
61 // Activate POA Manager
62 PortableServer::POAManager_var mgr
= poa
->the_POAManager();
66 PortableServer::Servant_var
<Messenger_i
> messenger_servant
= new Messenger_i
;
68 PortableServer::ObjectId_var oid
=
69 poa
->activate_object( messenger_servant
.in() );
70 CORBA::Object_var messenger_obj
= poa
->id_to_reference( oid
.in() );
72 CORBA::String_var str
= orb
->object_to_string( messenger_obj
.in() );
73 std::ofstream
iorFile ( ACE_TEXT_ALWAYS_CHAR(ior_output_file
) );
74 iorFile
<< str
.in() << std::endl
;
76 std::cout
<< std::endl
<< "IOR written to file " << ACE_TEXT_ALWAYS_CHAR(ior_output_file
) << std::endl
;
83 catch(const CORBA::Exception
& ex
)
85 std::cerr
<< "server Caught CORBA exception: " << ex
<< std::endl
;