2 #include "ace/OS_NS_stdio.h"
3 #include "ace/Get_Opt.h"
5 const ACE_TCHAR
*ior_output_file
= ACE_TEXT ("server.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)
17 ior_output_file
= get_opts
.opt_arg ();
22 ACE_ERROR_RETURN ((LM_ERROR
,
29 // Indicates successful parsing of the command line
34 ACE_TMAIN(int argc
, ACE_TCHAR
*argv
[])
38 CORBA::ORB_var orb
= CORBA::ORB_init (argc
, argv
);
40 if (parse_args (argc
, argv
) != 0)
43 CORBA::Object_var poa_object
=
44 orb
->resolve_initial_references("RootPOA");
45 PortableServer::POA_var root_poa
=
46 PortableServer::POA::_narrow (poa_object
.in ());
47 PortableServer::POAManager_var poa_manager
=
48 root_poa
->the_POAManager ();
49 poa_manager
->activate ();
51 Server_impl
* server_obj
= new Server_impl(orb
.in());
52 PortableServer::ServantBase_var
owner (server_obj
);
53 server_var server
= server_obj
->_this();
54 CORBA::String_var ior
= orb
->object_to_string (server
.in ());
56 FILE *output_file
= ACE_OS::fopen (ACE_TEXT_ALWAYS_CHAR(ior_output_file
), "w");
57 ACE_OS::fprintf (output_file
, "%s", ior
.in ());
58 ACE_OS::fclose (output_file
);