1 #include "ace/Get_Opt.h"
2 #include "ace/OS_NS_stdio.h"
5 #include "tao/IORTable/IORTable.h"
7 const ACE_TCHAR
*object_key
= 0;
8 const ACE_TCHAR
*ior_output_file
= ACE_TEXT("server.ior");
11 parse_args (int argc
, ACE_TCHAR
*argv
[])
13 ACE_Get_Opt
get_opts (argc
, argv
, ACE_TEXT("o:k:"));
16 while ((c
= get_opts ()) != -1)
20 object_key
= get_opts
.opt_arg ();
23 ior_output_file
= get_opts
.opt_arg ();
27 ACE_ERROR_RETURN ((LM_ERROR
,
28 "SERVER (%P): usage: %s "
29 "-o <ior output file>"
35 // Indicates successful parsing of the command line
40 ACE_TMAIN(int argc
, ACE_TCHAR
*argv
[])
46 CORBA::ORB_init (argc
, argv
);
48 CORBA::Object_var poa_object
=
49 orb
->resolve_initial_references ("RootPOA");
51 if (CORBA::is_nil (poa_object
.in ()))
52 ACE_ERROR_RETURN ((LM_ERROR
,
53 "SERVER (%P): Unable to initialize the POA.\n"),
56 PortableServer::POA_var root_poa
=
57 PortableServer::POA::_narrow (poa_object
.in ());
59 PortableServer::POAManager_var poa_manager
=
60 root_poa
->the_POAManager ();
62 if (parse_args (argc
, argv
) != 0)
67 PortableServer::ObjectId_var id
=
68 root_poa
->activate_object (&server_impl
);
70 CORBA::Object_var server
= root_poa
->id_to_reference (id
.in ());
72 CORBA::String_var ior
=
73 orb
->object_to_string (server
.in ());
75 CORBA::Object_var table_object
=
76 orb
->resolve_initial_references ("IORTable");
78 IORTable::Table_var adapter
=
79 IORTable::Table::_narrow (table_object
.in ());
81 adapter
->bind("Name-with-hyphens", ior
.in());
84 FILE *output_file
= ACE_OS::fopen (ior_output_file
, "w");
86 ACE_ERROR_RETURN ((LM_ERROR
,
87 "SERVER (%P): Cannot open output file "
88 "for writing IOR: %s",
91 ACE_OS::fprintf (output_file
, "%s", ior
.in ());
92 ACE_OS::fclose (output_file
);
95 "SERVER (%P): Activated as file://%s\n",
98 poa_manager
->activate();
102 root_poa
->destroy (1, 1);
104 catch (const CORBA::Exception
& ex
)
106 ex
._tao_print_exception ("SERVER (%P): Caught exception:");