2 #include "ace/Get_Opt.h"
4 const ACE_TCHAR
*ior
= ACE_TEXT ("file://test.ior");
7 parse_args (int argc
, ACE_TCHAR
*argv
[])
9 ACE_Get_Opt
get_opts (argc
, argv
, ACE_TEXT("k:"));
12 while ((c
= get_opts ()) != -1)
16 ior
= get_opts
.opt_arg ();
21 ACE_ERROR_RETURN ((LM_ERROR
,
28 // Indicates successful parsing of the command line
33 ACE_TMAIN(int argc
, ACE_TCHAR
*argv
[])
38 CORBA::ORB_init (argc
, argv
);
40 if (parse_args (argc
, argv
) != 0)
43 CORBA::Object_var object
= orb
->string_to_object(ior
);
45 Test_var test
= Test::_narrow (object
.in ());
47 VariableLengthInfo_var variable_info
;
48 test
->do_something_VariableLength(variable_info
);
50 FixedLengthInfo_var fixed_info
;
51 test
->do_something_FixedLength(fixed_info
);
57 catch (const CORBA::Exception
& ex
)
59 ex
._tao_print_exception ("Exception caught:");