Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / tests / Bug_2678_Regression / client.cpp
blobd8d41517a278d21a8713ceeec8875554751323a5
1 #include "testC.h"
2 #include "ace/Get_Opt.h"
4 const ACE_TCHAR *ior = ACE_TEXT("file://test.ior");
6 int
7 parse_args (int argc, ACE_TCHAR *argv[])
9 ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("k:"));
10 int c;
12 while ((c = get_opts ()) != -1)
13 switch (c)
15 case 'k':
16 ior = get_opts.opt_arg ();
17 break;
19 case '?':
20 default:
21 ACE_ERROR_RETURN ((LM_ERROR,
22 "usage: %s "
23 "-k <ior> "
24 "\n",
25 argv [0]),
26 -1);
28 // Indicates successful parsing of the command line
29 return 0;
32 int
33 ACE_TMAIN(int argc, ACE_TCHAR *argv[])
35 try
37 CORBA::ORB_var orb = CORBA::ORB_init (argc, argv);
39 if (parse_args (argc, argv) != 0)
40 return 1;
42 CORBA::Object_var tmp = orb->string_to_object(ior);
44 Test_var hello = Test::_narrow(tmp.in ());
46 if (CORBA::is_nil (hello.in ()))
48 ACE_ERROR_RETURN ((LM_DEBUG,
49 "Nil Test::Hello reference <%s>\n",
50 ior),
51 1);
54 AnySeq myseq;
55 myseq.length (2);
56 Container mycontainer;
57 Inner myinner;
58 myinner.value1 = 1;
59 myinner.value2 = 2;
60 myinner.value3 = 3;
61 myinner.value4 = 4;
62 myinner.value5 = 5;
63 mycontainer.contents <<= myinner;
64 myseq[0] <<= mycontainer;
65 myseq[1] <<= mycontainer;
66 AnySeq_var params = hello->RunTest (myseq);
68 for (CORBA::ULong count = 0; count < params->length(); ++count)
70 const Container* container = 0;
71 if (!(params[count] >>= container))
73 ACE_ERROR ((LM_ERROR, "ERROR, failed extract\n"));
75 else
77 const Inner* inner = 0;
78 if (!(container->contents >>= inner))
80 ACE_ERROR ((LM_ERROR, "ERROR, failed extract\n"));
82 else
83 ACE_DEBUG ((LM_DEBUG, "%d %d %d %d %d\n", inner->value1, inner->value2, inner->value3, inner->value4, inner->value5));
88 hello->shutdown ();
90 orb->destroy ();
92 catch (const CORBA::Exception& ex)
94 ex._tao_print_exception ("Exception caught:");
95 return 1;
98 return 0;