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
[])
45 CORBA::ORB_init (argc
, argv
);
47 CORBA::Object_var poa_object
=
48 orb
->resolve_initial_references ("RootPOA");
50 if (CORBA::is_nil (poa_object
.in ()))
51 ACE_ERROR_RETURN ((LM_ERROR
,
52 "SERVER (%P): Unable to initialize the POA.\n"),
55 PortableServer::POA_var root_poa
=
56 PortableServer::POA::_narrow (poa_object
.in ());
58 PortableServer::POAManager_var poa_manager
=
59 root_poa
->the_POAManager ();
61 if (parse_args (argc
, argv
) != 0)
66 PortableServer::ObjectId_var id
=
67 root_poa
->activate_object (&server_impl
);
69 CORBA::Object_var server
= root_poa
->id_to_reference (id
.in ());
71 CORBA::String_var ior
=
72 orb
->object_to_string (server
.in ());
74 CORBA::Object_var table_object
=
75 orb
->resolve_initial_references ("IORTable");
77 IORTable::Table_var adapter
=
78 IORTable::Table::_narrow (table_object
.in ());
80 adapter
->bind("Name-with-hyphens", ior
.in());
83 FILE *output_file
= ACE_OS::fopen (ior_output_file
, "w");
85 ACE_ERROR_RETURN ((LM_ERROR
,
86 "SERVER (%P): Cannot open output file "
87 "for writing IOR: %s",
90 ACE_OS::fprintf (output_file
, "%s", ior
.in ());
91 ACE_OS::fclose (output_file
);
94 "SERVER (%P): Activated as file://%s\n",
97 poa_manager
->activate();
101 root_poa
->destroy (true, true);
103 catch (const CORBA::Exception
& ex
)
105 ex
._tao_print_exception ("SERVER (%P): Caught exception:");