Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / orbsvcs / tests / Bug_2316_Regression / server.cpp
blob7da5d7d810173bf5dd3ef3f990af8e832edff857
1 #include "Test_impl.h"
2 #include "ace/OS_NS_stdio.h"
3 #include "ace/Get_Opt.h"
5 const ACE_TCHAR *ior_output_file = ACE_TEXT ("server.ior");
7 int
8 parse_args (int argc, ACE_TCHAR *argv[])
10 ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("o:"));
11 int c;
13 while ((c = get_opts ()) != -1)
14 switch (c)
16 case 'o':
17 ior_output_file = get_opts.opt_arg ();
18 break;
20 case '?':
21 default:
22 ACE_ERROR_RETURN ((LM_ERROR,
23 "usage: %s "
24 "-o <iorfile>"
25 "\n",
26 argv [0]),
27 -1);
29 // Indicates successful parsing of the command line
30 return 0;
33 int
34 ACE_TMAIN(int argc, ACE_TCHAR *argv[])
36 try
38 CORBA::ORB_var orb = CORBA::ORB_init (argc, argv);
40 if (parse_args (argc, argv) != 0)
41 return 1;
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);
60 orb->run ();
61 orb->destroy ();
63 catch(...)
65 return 1;
68 return 0;