summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Portable_Interceptors/Dynamic/Echo_Server_ORBInitializer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Portable_Interceptors/Dynamic/Echo_Server_ORBInitializer.cpp')
-rw-r--r--ACE/TAO/tests/Portable_Interceptors/Dynamic/Echo_Server_ORBInitializer.cpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Portable_Interceptors/Dynamic/Echo_Server_ORBInitializer.cpp b/ACE/TAO/tests/Portable_Interceptors/Dynamic/Echo_Server_ORBInitializer.cpp
new file mode 100644
index 00000000000..b701542cab6
--- /dev/null
+++ b/ACE/TAO/tests/Portable_Interceptors/Dynamic/Echo_Server_ORBInitializer.cpp
@@ -0,0 +1,39 @@
+// -*- C++ -*-
+//
+// $Id$
+
+#include "Echo_Server_ORBInitializer.h"
+
+ACE_RCSID (Dynamic, Echo_Server_ORBInitializer, "$Id$")
+
+#if TAO_HAS_INTERCEPTORS == 1
+
+#include "server_interceptor.h"
+
+void
+Echo_Server_ORBInitializer::pre_init (
+ PortableInterceptor::ORBInitInfo_ptr)
+{
+}
+
+void
+Echo_Server_ORBInitializer::post_init (
+ PortableInterceptor::ORBInitInfo_ptr info)
+{
+
+ PortableInterceptor::ServerRequestInterceptor_ptr interceptor =
+ PortableInterceptor::ServerRequestInterceptor::_nil ();
+
+ // Install the Echo server request interceptor
+ ACE_NEW_THROW_EX (interceptor,
+ Echo_Server_Request_Interceptor,
+ CORBA::NO_MEMORY ());
+
+ PortableInterceptor::ServerRequestInterceptor_var
+ server_interceptor = interceptor;
+
+ info->add_server_request_interceptor (server_interceptor.in ());
+
+}
+
+#endif /* TAO_HAS_INTERCEPTORS == 1 */