void ForwardTest_Request_Interceptor::send_other ( PortableInterceptor::ServerRequestInfo_ptr ri) { // This will throw an exception if a location forward has not // occured. If an exception is thrown then something is wrong with // the PortableInterceptor::ForwardRequest support. CORBA::Object_var forward = ri->forward_reference (); if (CORBA::is_nil (forward.in ())) throw CORBA::INTERNAL (); }
void Server_Request_Interceptor::send_other ( PortableInterceptor::ServerRequestInfo_ptr ri) { CORBA::Boolean response_expected = ri->response_expected (); if (!response_expected) // A one-way request. return; // If we get this far then we should have received a // LOCATION_FORWARD reply. // This will throw an exception if a location forward has not // occured. If an exception is thrown then something is wrong with // the PortableInterceptor::ForwardRequest support. CORBA::Object_var forward = ri->forward_reference (); if (CORBA::is_nil (forward.in ())) throw CORBA::INTERNAL (); }
void Echo_Server_Request_Interceptor::send_other ( PortableInterceptor::ServerRequestInfo_ptr ri) { CORBA::String_var operation = ri->operation (); ACE_DEBUG ((LM_DEBUG, "%C.send_other from \"%C\"\n", this->myname_, operation.in ())); // Check that the request service context hasn't been changed. IOP::ServiceContext_var sc = ri->get_request_service_context (::service_id); const char *buf = reinterpret_cast<const char *> (sc->context_data.get_buffer ()); if (ACE_OS::strcmp (buf, request_msg) != 0) { ACE_ERROR ((LM_ERROR, "ERROR: Echo_Server_Request_Interceptor::send_reply: " "Expected request service context to be: %C.\n" " Got: %C\n", request_msg, buf)); } // If we get this far then we should have received a // LOCATION_FORWARD reply. // This will throw an exception if a location forward has not // occurred. If an exception is thrown then something is wrong with // the PortableInterceptor::ForwardRequest support. CORBA::Object_var forward = ri->forward_reference (); if (CORBA::is_nil (forward.in ())) throw CORBA::INTERNAL (); }