// $Id$ #include "TestC.h" #include "ace/Get_Opt.h" ACE_RCSID(Hello, client, "$Id$") const char *ior = "file://test.ior"; int parse_args (int argc, char *argv[]) { ACE_Get_Opt get_opts (argc, argv, "k:"); int c; while ((c = get_opts ()) != -1) switch (c) { case 'k': ior = get_opts.opt_arg (); break; case '?': default: ACE_ERROR_RETURN ((LM_ERROR, "usage: %s " "-k " "\n", argv [0]), -1); } // Indicates sucessful parsing of the command line return 0; } void get_stringList2(Test::Hello_var hello); int main (int argc, char *argv[]) { try { CORBA::ORB_var orb = CORBA::ORB_init (argc, argv); if (parse_args (argc, argv) != 0) return 1; CORBA::Object_var tmp = orb->string_to_object(ior); Test::Hello_var hello = Test::Hello::_narrow(tmp.in ()); if (CORBA::is_nil (hello.in ())) { ACE_ERROR_RETURN ((LM_DEBUG, "Nil Test::Hello reference <%s>\n", ior), 1); } Test::Fls_var fstruct; Test::Vls_var vstruct; ACE_DEBUG ((LM_DEBUG, "\n(%P|%t) - op test 1\n")); hello->op(fstruct.out(), vstruct.out()); ACE_DEBUG ((LM_DEBUG, "\n(%P|%t) - op test 2\n")); hello->op(fstruct, vstruct.out()); hello->shutdown (); orb->destroy (); } catch (const CORBA::Exception& ex) { ex._tao_print_exception ("Exception caught:"); return 1; } return 0; }