summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3276_Regression/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_3276_Regression/client.cpp')
-rw-r--r--TAO/tests/Bug_3276_Regression/client.cpp120
1 files changed, 120 insertions, 0 deletions
diff --git a/TAO/tests/Bug_3276_Regression/client.cpp b/TAO/tests/Bug_3276_Regression/client.cpp
new file mode 100644
index 00000000000..c0fb9eb32ab
--- /dev/null
+++ b/TAO/tests/Bug_3276_Regression/client.cpp
@@ -0,0 +1,120 @@
+// $Id$
+
+#include "ace/SString.h"
+#include "ace/Get_Opt.h"
+#include "ace/OS_NS_unistd.h"
+#include "testC.h"
+#include "tao/ORB_Constants.h"
+
+const char *proxy_ior = 0;
+const char *control_ior = 0;
+
+int
+parse_args (int argc, char *argv[])
+{
+ ACE_Get_Opt get_opts (argc, argv, "p:c:");
+ int c;
+
+ while ((c = get_opts ()) != -1)
+ switch (c)
+ {
+ case 'p':
+ proxy_ior = get_opts.opt_arg ();
+ break;
+ case 'c':
+ control_ior = get_opts.opt_arg ();
+ break;
+ case '?':
+ default:
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "usage: %s "
+ "-c <control>"
+ "-p <proxy>"
+ "\n",
+ argv [0]),
+ -1);
+ }
+ // Indicates sucessful parsing of the command line
+ return 0;
+}
+
+int
+main (int argc, char *argv[])
+{
+ try
+ {
+ CORBA::ORB_var orb =
+ CORBA::ORB_init (argc, argv, "");
+
+ if (parse_args (argc, argv) == -1)
+ return -1;
+
+ CORBA::Object_var obj =
+ orb->string_to_object (proxy_ior);
+
+ if (obj.in () == 0)
+ {
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "The received object is nil\n"),
+ -1);
+ }
+
+ Simple_Server_var server =
+ Simple_Server::_narrow (obj.in ());
+
+ if (CORBA::is_nil (server.in ()))
+ {
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "Object reference is nil\n"),
+ -1);
+ }
+
+ try
+ {
+ while (true)
+ {
+ // Make a remote call
+ server->remote_call ();
+ ACE_OS::sleep (2);
+ }
+ }
+ catch (CORBA::TRANSIENT& ex)
+ {
+ CORBA::ULong m = ex.minor () & 0x00000F80u;
+ if (m == TAO_INVOCATION_LOCATION_FORWARD_MINOR_CODE &&
+ ex.completed () == CORBA::COMPLETED_NO)
+ {
+ ACE_DEBUG ((LM_DEBUG, "TRANSIENT caught in client as it was expected.\n"));
+ }
+ else
+ {
+ ex._tao_print_exception ("Unexpected TRANSIENT caught in client:");
+ return 2;
+ }
+ }
+
+ obj =
+ orb->string_to_object (control_ior);
+
+ if (obj.in () == 0)
+ {
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "The received objref is NULL\n"),
+ -1);
+ }
+
+ server =
+ Simple_Server::_narrow (obj.in ());
+
+ server->shutdown ();
+
+ orb->destroy ();
+ }
+ catch (const CORBA::Exception & ex)
+ {
+ ex._tao_print_exception ("Exception caught in client:");
+ return 1;
+ }
+
+ return 0;
+}