1 #include "Messenger_i.h"
2 #include "ace/Get_Opt.h"
6 const ACE_TCHAR
*ior_output_file
= ACE_TEXT ("test.ior");
9 parse_args (int argc
, ACE_TCHAR
*argv
[])
11 ACE_Get_Opt
get_opts (argc
, argv
, ACE_TEXT("o:"));
14 while ((c
= get_opts ()) != -1)
18 ior_output_file
= get_opts
.opt_arg ();
23 ACE_ERROR_RETURN ((LM_ERROR
,
30 // Indicates successful parsing of the command line
34 int ACE_TMAIN (int argc
, ACE_TCHAR
*argv
[])
37 // Initialize the ORB.
38 CORBA::ORB_var orb
= CORBA::ORB_init( argc
, argv
);
40 //Get reference to the RootPOA.
41 CORBA::Object_var obj
= orb
->resolve_initial_references( "RootPOA" );
42 PortableServer::POA_var poa
= PortableServer::POA::_narrow( obj
.in() );
44 // Activate the POAManager.
45 PortableServer::POAManager_var mgr
= poa
->the_POAManager();
48 if (parse_args (argc
, argv
) != 0)
52 PortableServer::Servant_var
<Messenger_i
> messenger_servant
= new Messenger_i
;
54 // Register the servant with the RootPOA, obtain its object
55 // reference, stringify it, and write it to a file.
56 PortableServer::ObjectId_var oid
=
57 poa
->activate_object( messenger_servant
.in() );
58 CORBA::Object_var messenger_obj
= poa
->id_to_reference( oid
.in() );
59 CORBA::String_var str
= orb
->object_to_string( messenger_obj
.in() );
61 // Output the IOR to the <ior_output_file>
62 FILE *output_file
= ACE_OS::fopen (ior_output_file
, "w");
64 ACE_ERROR_RETURN ((LM_ERROR
,
65 "Cannot open output file for writing IOR: %s\n",
68 ACE_OS::fprintf (output_file
, "%s", str
.in ());
69 ACE_OS::fclose (output_file
);
70 std::cout
<< "IOR written to file " << ACE_TEXT_ALWAYS_CHAR (ior_output_file
) << std::endl
;
72 // Accept requests from clients.
76 catch(const CORBA::Exception
& ex
) {
77 std::cerr
<< "CORBA exception: " << ex
<< std::endl
;