1 #include "ace/Get_Opt.h"
3 #include "tao/BiDir_GIOP/BiDirGIOP.h"
4 #include "tao/AnyTypeCode/Any.h"
5 #include "ace/OS_NS_stdio.h"
7 const ACE_TCHAR
*ior_output_file
= 0;
8 int no_iterations
= 10;
11 parse_args (int argc
, ACE_TCHAR
*argv
[])
13 ACE_Get_Opt
get_opts (argc
, argv
, ACE_TEXT("o:i:"));
16 while ((c
= get_opts ()) != -1)
20 ior_output_file
= get_opts
.opt_arg ();
23 no_iterations
= ACE_OS::atoi (get_opts
.opt_arg ());
27 ACE_ERROR_RETURN ((LM_ERROR
,
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 " (%P|%t) 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 // Policies for the childPOA to be created.
62 CORBA::PolicyList
policies (1);
66 pol
<<= BiDirPolicy::BOTH
;
68 orb
->create_policy (BiDirPolicy::BIDIRECTIONAL_POLICY_TYPE
,
71 // Create POA as child of RootPOA with the above policies. This POA
72 // will receive request in the same connection in which it sent
74 PortableServer::POA_var child_poa
=
75 root_poa
->create_POA ("childPOA",
79 // Creation of childPOA is over. Destroy the Policy objects.
80 for (CORBA::ULong i
= 0;
81 i
< policies
.length ();
84 policies
[i
]->destroy ();
87 poa_manager
->activate ();
89 if (parse_args (argc
, argv
) != 0)
92 Simple_Server_i
server_impl (orb
.in (),
95 PortableServer::ObjectId_var id
=
96 PortableServer::string_to_ObjectId ("simple_server");
98 child_poa
->activate_object_with_id (id
.in (),
101 CORBA::Object_var obj
=
102 child_poa
->id_to_reference (id
.in ());
104 CORBA::String_var ior
=
105 orb
->object_to_string (obj
.in ());
107 ACE_DEBUG ((LM_DEBUG
, "Activated as <%C>\n", ior
.in ()));
109 // If the ior_output_file exists, output the ior to it
110 if (ior_output_file
!= 0)
112 FILE *output_file
= ACE_OS::fopen (ior_output_file
, "w");
113 if (output_file
== 0)
114 ACE_ERROR_RETURN ((LM_ERROR
,
115 "Cannot open output file for writing IOR: %s",
118 ACE_OS::fprintf (output_file
, "%s", ior
.in ());
119 ACE_OS::fclose (output_file
);
125 // Just process one upcall. We know that we would get the
126 // clients IOR in that call.
127 CORBA::Boolean pending
=
135 // Now that hopefully we have the clients IOR, just start
136 // making remote calls to the client.
137 retval
= server_impl
.call_client ();
139 ACE_DEBUG ((LM_DEBUG
, "event loop finished\n"));
141 root_poa
->destroy (true, true);
143 catch (const CORBA::Exception
& ex
)
145 ex
._tao_print_exception ("Caught exception:");