2 #include "ace/Get_Opt.h"
3 #include "ace/OS_NS_unistd.h"
5 const ACE_TCHAR
*ior
= ACE_TEXT ("file://test.ior");
8 parse_args (int argc
, ACE_TCHAR
*argv
[])
10 ACE_Get_Opt
get_opts (argc
, argv
, ACE_TEXT("k:"));
13 while ((c
= get_opts ()) != -1)
17 ior
= 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 tmp
= orb
->string_to_object(ior
);
45 Test::Hello_var hello
= Test::Hello::_narrow(tmp
.in ());
47 if (CORBA::is_nil (hello
.in ()))
49 ACE_ERROR_RETURN ((LM_DEBUG
,
50 "Nil Test::Hello reference <%s>\n",
55 CORBA::String_var the_string
= hello
->get_string ();
57 ACE_DEBUG ((LM_DEBUG
, "(%P|%t) - string returned <%C>\n",
66 catch (const CORBA::Exception
& ex
)
68 ex
._tao_print_exception ("Exception caught:");