void ORB_Initializer::post_init (PortableInterceptor::ORBInitInfo_ptr info) { // Allocate slot id. // state_slot_id (info->allocate_slot_id ()); // Register replica controller as server request interceptor. // TAO_ORBInitInfo* tao_info = dynamic_cast<TAO_ORBInitInfo*> (info); CORBA::ORB_var orb (tao_info->orb_core ()->orb ()); PortableInterceptor::ServerRequestInterceptor_var interceptor; { PortableInterceptor::ServerRequestInterceptor *tmp_interceptor = 0; ACE_NEW_THROW_EX (tmp_interceptor, ReplicaController (orb.in ()), CORBA::NO_MEMORY ( CORBA::SystemException::_tao_minor_code ( TAO::VMCID, ENOMEM), CORBA::COMPLETED_NO)); interceptor = tmp_interceptor; } info->add_server_request_interceptor (interceptor.in ()); }
void Server_ORBInitializer::post_init ( PortableInterceptor::ORBInitInfo_ptr info) { // Install the Echo server request interceptor ACE_NEW_THROW_EX (this->server_interceptor_, ForwardTest_Request_Interceptor, CORBA::NO_MEMORY ()); PortableInterceptor::ServerRequestInterceptor_var interceptor = this->server_interceptor_; info->add_server_request_interceptor (interceptor.in ()); }
void ServerInitializer::post_init ( PortableInterceptor::ORBInitInfo_ptr info) { // get reference to the codec_factory IOP::CodecFactory_var codec_factory = info->codec_factory(); // Create and register the request interceptors. PortableInterceptor::ServerRequestInterceptor_var si = new ServerInterceptor (codec_factory); info->add_server_request_interceptor (si.in()); // add IOR Interceptor PortableInterceptor::IORInterceptor_var iori = new ServerIORInterceptor; info->add_ior_interceptor (iori.in()); }
void Server_ORBInitializer::post_init ( PortableInterceptor::ORBInitInfo_ptr info) { PortableInterceptor::ServerRequestInterceptor_ptr tmp = PortableInterceptor::ServerRequestInterceptor::_nil (); switch (this->interceptor_type_) { default: case IT_NONE: return; case IT_NOOP: { // Installing the Vault interceptor ACE_NEW_THROW_EX (tmp, Vault_Server_Request_NOOP_Interceptor (), CORBA::NO_MEMORY ()); break; } case IT_CONTEXT: { // Installing the Vault interceptor ACE_NEW_THROW_EX (tmp, Vault_Server_Request_Context_Interceptor (), CORBA::NO_MEMORY ()); break; } case IT_DYNAMIC: { // Installing the Vault interceptor ACE_NEW_THROW_EX (tmp, Vault_Server_Request_Dynamic_Interceptor (), CORBA::NO_MEMORY ()); break; } } PortableInterceptor::ServerRequestInterceptor_var interceptor = tmp; info->add_server_request_interceptor (interceptor.in ()); }