3 #include "Client_ORBInitializer.h"
4 #include "interceptors.h"
6 Client_ORBInitializer::Client_ORBInitializer ()
11 Client_ORBInitializer::pre_init (
12 PortableInterceptor::ORBInitInfo_ptr
)
17 Client_ORBInitializer::post_init (
18 PortableInterceptor::ORBInitInfo_ptr info
)
20 CORBA::String_var orb_id
=
23 PortableInterceptor::ClientRequestInterceptor_ptr interceptor
=
24 PortableInterceptor::ClientRequestInterceptor::_nil ();
26 // Install the Echo client request interceptor
27 ACE_NEW_THROW_EX (interceptor
,
28 Client_Request_Interceptor (orb_id
.in ()),
31 PortableInterceptor::ClientRequestInterceptor_var
32 client_interceptor
= interceptor
;
34 info
->add_client_request_interceptor (client_interceptor
.in ());