summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-02-18 18:33:32 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-02-18 18:33:32 +0000
commitf12f36e221ea116c8d35f4096621b81450593251 (patch)
tree19eb1b66a8a29fa1dd0857df7f7cd7a5083d9346
parentc7e94f217e70fd0d35eab43c7fd0402844b1773a (diff)
downloadATCD-f12f36e221ea116c8d35f4096621b81450593251.tar.gz
*** empty log message ***
-rw-r--r--TAO/tao/Collocated_Invocation.cpp13
1 files changed, 9 insertions, 4 deletions
diff --git a/TAO/tao/Collocated_Invocation.cpp b/TAO/tao/Collocated_Invocation.cpp
index 504f6c22abd..65f27abfcc5 100644
--- a/TAO/tao/Collocated_Invocation.cpp
+++ b/TAO/tao/Collocated_Invocation.cpp
@@ -1,11 +1,16 @@
#include "Collocated_Invocation.h"
#include "Collocation_Proxy_Broker.h"
+#include "ORB_Core.h"
+#include "Request_Dispatcher.h"
+#include "TAO_Server_Request.h"
#include "operation_details.h"
+
ACE_RCSID (tao,
Collocated_Invocation,
"$Id$")
+
namespace TAO
{
Collocated_Invocation::Collocated_Invocation (CORBA::Object_ptr t,
@@ -43,14 +48,14 @@ namespace TAO
{
if (strat == TAO_CS_THRU_POA_STRATEGY)
{
- TAO_ServerRequest request (this->orb_core_,
+ TAO_ServerRequest request (this->orb_core (),
this->details_,
- this->effective_target_);
+ this->effective_target ());
TAO_Request_Dispatcher * const dispatcher =
- this->orb_core_->request_dispatcher ();
+ this->orb_core ()->request_dispatcher ();
- dispatcher->dispatch (this->orb_core_,
+ dispatcher->dispatch (this->orb_core (),
request,
this->forwarded_to_.out ());
ACE_ENV_ARG_PARAMETER);