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