2 #include "ace/Get_Opt.h"
3 // Ensure that the PI library is linked in when building statically
5 #include "orbsvcs/FaultTolerance/FT_ClientService_Activate.h"
9 const ACE_TCHAR
*ior
= ACE_TEXT("file://test.ior");
12 parse_args (int argc
, ACE_TCHAR
*argv
[])
14 ACE_Get_Opt
get_opts (argc
, argv
, ACE_TEXT("k:"));
17 while ((c
= get_opts ()) != -1)
21 ior
= get_opts
.opt_arg ();
26 ACE_ERROR_RETURN ((LM_ERROR
,
33 // Indicates successful parsing of the command line
38 ACE_TMAIN(int argc
, ACE_TCHAR
*argv
[])
40 CORBA::Boolean result
= 0;
44 CORBA::ORB_init (argc
, argv
);
46 if (parse_args (argc
, argv
) != 0)
49 CORBA::Object_var tmp
=
50 orb
->string_to_object(ior
);
52 Test::Hello_var hello
=
53 Test::Hello::_narrow(tmp
.in ());
55 if (CORBA::is_nil (hello
.in ()))
57 ACE_ERROR_RETURN ((LM_DEBUG
,
58 "Test failed - Not regression - Unexpected Nil Test::Hello reference <%s>\n",
63 CORBA::Object_var poa_object
=
64 orb
->resolve_initial_references("RootPOA");
66 PortableServer::POA_var root_poa
=
67 PortableServer::POA::_narrow (poa_object
.in ());
69 if (CORBA::is_nil (root_poa
.in ()))
70 ACE_ERROR_RETURN ((LM_ERROR
,
71 " (%P|%t) Test failed - Not regression - unexpected nil RootPOA\n"),
74 PortableServer::POAManager_var poa_manager
=
75 root_poa
->the_POAManager ();
77 if (parse_args (argc
, argv
) != 0)
81 ACE_NEW_RETURN (hello_impl
,
82 Hello (orb
.in (), hello
.in ()),
84 PortableServer::ServantBase_var
owner_transfer(hello_impl
);
89 poa_manager
->activate ();
93 hello
->throw_exception ();
95 catch (const Test::MyException
& my_ex
)
97 ACE_UNUSED_ARG (my_ex
);
98 ACE_DEBUG ((LM_DEBUG
, "Client catches a MyException, as expected. No problem !\n"));
101 result
= ! hello
->call_me_back (me
.in ());
107 catch (const CORBA::Exception
& ex
)
109 ex
._tao_print_exception (
110 "Test failed (Not regression) because unexpected exception caught:");
116 ACE_DEBUG ((LM_ERROR
, "Error: REGRESSION identified!!!\n"));
120 ACE_DEBUG ((LM_DEBUG
, "Test passed !!!\n"));