Please report new issues athttps://github.com/DOCGroup
see the code below, when there is no transport, why do we give a no_implement, shouldn't it be nocontext in the first two throws? /// Obtains the IIOP_Connection_Handler associated with the /// Transport. Will throw NO_IMPLEMENT if the (selected) transport /// () == 0, or if transport->connection_handler () == 0. Will /// throw NoContext, if no transport has been selected yet. TAO_IIOP_Connection_Handler* IIOP_Current_Impl::handler (void) { #if defined (TAO_HAS_IIOP) && (TAO_HAS_IIOP != 0) const TAO_Transport* t = this->transport (); if (t == 0) throw ::CORBA::NO_IMPLEMENT (); TAO_Connection_Handler *ch = const_cast<TAO_Transport*>(t)->connection_handler (); if (ch == 0) throw ::CORBA::NO_IMPLEMENT (); return dynamic_cast <TAO_IIOP_Connection_Handler*> (ch); #else throw ::CORBA::NO_IMPLEMENT (); #endif }
added depends
Mon Nov 12 08:54:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Reopen, Adam pointed at that TC within send_request now always fails
Tue Nov 27 11:20:54 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl> * tao/DynamicInterface/DII_Invocation.cpp: * tao/DynamicInterface/DII_Invocation.h: * tao/DynamicInterface/DII_Invocation_Adapter.cpp: * tao/Invocation_Adapter.cpp: * tao/Invocation_Endpoint_Selectors.cpp: * tao/Messaging/Asynch_Invocation.cpp: * tao/Messaging/Asynch_Invocation_Adapter.cpp: * tao/Profile_Transport_Resolver.cpp: * tao/Synch_Invocation.cpp: * tao/Synch_Invocation.h: Reworked the fix for bug 2133/3079/3080 in such a way that the Transport Current code is working again (see bug 3127)
fixed