2 #include "Client_ORBInitializer.h"
3 #include "client_interceptor.h"
5 Client_ORBInitializer::Client_ORBInitializer ()
10 Client_ORBInitializer::pre_init (
11 PortableInterceptor::ORBInitInfo_ptr
)
16 Client_ORBInitializer::post_init (
17 PortableInterceptor::ORBInitInfo_ptr info
)
19 CORBA::String_var orb_id
=
22 PortableInterceptor::ClientRequestInterceptor_ptr interceptor
=
23 PortableInterceptor::ClientRequestInterceptor::_nil ();
25 // Install the Echo client request interceptor
26 ACE_NEW_THROW_EX (interceptor
,
27 Echo_Client_Request_Interceptor (orb_id
.in ()),
30 PortableInterceptor::ClientRequestInterceptor_var
31 client_interceptor
= interceptor
;
33 info
->add_client_request_interceptor (client_interceptor
.in ());