summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Portable_Interceptors/Bug_3080/Client_ORBInitializer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Portable_Interceptors/Bug_3080/Client_ORBInitializer.cpp')
-rw-r--r--ACE/TAO/tests/Portable_Interceptors/Bug_3080/Client_ORBInitializer.cpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Portable_Interceptors/Bug_3080/Client_ORBInitializer.cpp b/ACE/TAO/tests/Portable_Interceptors/Bug_3080/Client_ORBInitializer.cpp
new file mode 100644
index 00000000000..8390121b3b2
--- /dev/null
+++ b/ACE/TAO/tests/Portable_Interceptors/Bug_3080/Client_ORBInitializer.cpp
@@ -0,0 +1,39 @@
+// -*- C++ -*-
+
+#include "Client_ORBInitializer.h"
+
+ACE_RCSID (Redirection,
+ Client_ORBInitializer,
+ "$Id$")
+
+#if TAO_HAS_INTERCEPTORS == 1
+
+#include "Client_Request_Interceptor.h"
+#include "tao/StringSeqC.h"
+#include "tao/ORB_Constants.h"
+#include "ace/OS_NS_string.h"
+
+void
+Client_ORBInitializer::pre_init (PortableInterceptor::ORBInitInfo_ptr)
+{
+}
+
+void
+Client_ORBInitializer::post_init (PortableInterceptor::ORBInitInfo_ptr info)
+{
+ // Install the client request interceptor.
+ ACE_NEW_THROW_EX (client_interceptor_,
+ Client_Request_Interceptor,
+ CORBA::NO_MEMORY (
+ CORBA::SystemException::_tao_minor_code (
+ TAO::VMCID,
+ ENOMEM),
+ CORBA::COMPLETED_NO));
+
+ PortableInterceptor::ClientRequestInterceptor_var
+ client_interceptor = client_interceptor_;
+
+ info->add_client_request_interceptor (client_interceptor.in ());
+}
+
+#endif /* TAO_HAS_INTERCEPTORS == 1 */