#include "ace/Get_Opt.h" #include "testC.h" ACE_RCSID (ServantLocator, client, "$Id$") const char * ior = 0; 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; default: ACE_ERROR_RETURN ((LM_ERROR, "Usage: %s " "-k IOR\n", argv[0]), -1); } return 0; } int ACE_TMAIN(int argc, ACE_TCHAR *argv[]) { int status = 0; try { CORBA::ORB_var orb = CORBA::ORB_init (argc, argv, "Client ORB"); if (::parse_args (argc, argv) != 0) return -1; // Start out with the first IOR. Interaction with the second // IOR occurs during the various interceptions executed during // this test. CORBA::Object_var object = orb->string_to_object (ior); test_var server = test::_narrow (object.in ()); if (CORBA::is_nil (server.in ())) { ACE_ERROR_RETURN ((LM_ERROR, "Object reference <%s> is nil\n", ior), 1); } server->op (); server->shutdown (); orb->destroy (); } catch (const CORBA::Exception& ex) { ex._tao_print_exception ("Caught exception:"); return -1; } return status; }