2 #include "ace/Get_Opt.h"
3 #include "ace/OS_NS_stdio.h"
5 const ACE_TCHAR
*ior_output_file
= ACE_TEXT ("test.ior");
8 parse_args (int argc
, ACE_TCHAR
*argv
[])
10 ACE_Get_Opt
get_opts (argc
, argv
, ACE_TEXT ("o:"));
13 while ((c
= get_opts ()) != -1)
18 ior_output_file
= get_opts
.opt_arg ();
23 ACE_ERROR_RETURN ((LM_ERROR
,
31 // Indicates successful parsing of the command line
36 ACE_TMAIN(int argc
, ACE_TCHAR
*argv
[])
41 CORBA::ORB_init (argc
, argv
);
43 CORBA::Object_var poa_object
=
44 orb
->resolve_initial_references ("RootPOA");
46 PortableServer::POA_var root_poa
=
47 PortableServer::POA::_narrow (poa_object
.in ());
49 if (CORBA::is_nil (root_poa
.in ()))
51 ACE_ERROR_RETURN ((LM_ERROR
,
52 " (%P|%t) Panic: nil RootPOA\n"),
56 PortableServer::POAManager_var poa_manager
= root_poa
->the_POAManager ();
58 if (parse_args (argc
, argv
) != 0)
61 BoundSequences
*test_impl
= 0;
62 ACE_NEW_RETURN (test_impl
,
63 BoundSequences (orb
.in ()),
65 PortableServer::ServantBase_var
owner_transfer (test_impl
);
67 PortableServer::ObjectId_var id
=
68 root_poa
->activate_object (test_impl
);
70 CORBA::Object_var object
= root_poa
->id_to_reference (id
.in ());
72 Test::BoundSequences_var theServer
=
73 Test::BoundSequences::_narrow (object
.in ());
75 CORBA::String_var ior
= orb
->object_to_string (theServer
.in ());
77 // Output the IOR to the <ior_output_file>
78 FILE *output_file
= ACE_OS::fopen (ior_output_file
, "w");
81 ACE_ERROR_RETURN ((LM_ERROR
,
82 "Server - Cannot open output file for writing IOR: %s\n",
86 ACE_OS::fprintf (output_file
, "%s", ior
.in ());
87 ACE_OS::fclose (output_file
);
89 poa_manager
->activate ();
93 ACE_DEBUG ((LM_DEBUG
, "Server - Event loop finished\n"));
95 root_poa
->destroy (1, 1);
99 catch (const CORBA::Exception
& ex
)
101 ex
._tao_print_exception ("Server - Exception caught:");