summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Bug_3683_Regression/server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Bug_3683_Regression/server.cpp')
-rw-r--r--ACE/TAO/tests/Bug_3683_Regression/server.cpp38
1 files changed, 38 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Bug_3683_Regression/server.cpp b/ACE/TAO/tests/Bug_3683_Regression/server.cpp
new file mode 100644
index 00000000000..18eaefc297e
--- /dev/null
+++ b/ACE/TAO/tests/Bug_3683_Regression/server.cpp
@@ -0,0 +1,38 @@
+// $Id$
+#include "Simple_util.h"
+#include "Echo_i.h"
+
+// This is the main driver program for the time and date server.
+
+int
+ACE_TMAIN(int argc, ACE_TCHAR *argv[])
+{
+ Server<Echo_i> server;
+
+ ACE_DEBUG ((LM_DEBUG,
+ ACE_TEXT ("\n\tEcho server\n\n")));
+
+ try
+ {
+ if (server.init ("Echo",
+ argc,
+ argv) == -1)
+ return 1;
+ else
+ {
+ server.run ();
+ }
+ }
+ catch (const CORBA::UserException& userex)
+ {
+ userex._tao_print_exception ("User Exception");
+ return -1;
+ }
+ catch (const CORBA::SystemException& sysex)
+ {
+ sysex._tao_print_exception ("System Exception");
+ return -1;
+ }
+
+ return 0;
+}