diff options
author | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2004-03-30 03:37:57 +0000 |
---|---|---|
committer | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2004-03-30 03:37:57 +0000 |
commit | 3099bba108def62ac5ecc94750521797f8abf558 (patch) | |
tree | 836fd78ca2d063c4487435f31a95bb6606550d90 /TAO/tao/DynamicInterface | |
parent | dbf4750e848a58d8029450caa2e268888a90e14b (diff) | |
download | ATCD-3099bba108def62ac5ecc94750521797f8abf558.tar.gz |
ChangeLogTag:Mon Mar 29 21:34:30 2004 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/DynamicInterface')
-rw-r--r-- | TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp b/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp index 7c1e1588e90..0214eb33778 100644 --- a/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp +++ b/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp @@ -5,6 +5,11 @@ #include "tao/Exception.h" #include "tao/ORB_Constants.h" +#include "tao/Profile_Transport_Resolver.h" +#include "tao/Transport.h" +#include "tao/Transport.h" +#include "tao/Pluggable_Messaging.h" +#include "Request.h" #include "ace/os_include/os_errno.h" @@ -57,6 +62,8 @@ namespace TAO TAO_INVOKE_FAILURE); } + r.transport ()->messaging_object ()->out_stream ().reset_byte_order (request_->_tao_byte_order ()); + TAO::DII_Invocation synch (this->target_, r, op, @@ -144,6 +151,7 @@ namespace TAO TAO_INVOKE_FAILURE); } + r.transport ()->messaging_object ()->out_stream ().reset_byte_order (request_->_tao_byte_order ()); TAO::DII_Deferred_Invocation synch ( this->target_, r, @@ -151,6 +159,8 @@ namespace TAO this->rd_, this->request_); + r.transport ()->messaging_object ()->out_stream ().reset_byte_order (request_->_tao_byte_order ()); + Invocation_Status status = synch.remote_invocation (max_wait_time ACE_ENV_ARG_PARAMETER); |