Bug 3127 - TC::IIOP issue
Summary: TC::IIOP issue
Status: RESOLVED FIXED
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.6
Hardware: All All
: P3 normal
Assignee: DOC Center Support List (internal)
URL:
Depends on: 2133
Blocks: 2789
  Show dependency tree
 
Reported: 2007-11-06 05:18 CST by Johnny Willemsen
Modified: 2007-11-27 05:29 CST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Johnny Willemsen 2007-11-06 05:18:51 CST
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
    }
Comment 1 Johnny Willemsen 2007-11-07 07:45:00 CST
added depends
Comment 2 Johnny Willemsen 2007-11-12 03:00:12 CST
Mon Nov 12 08:54:21 UTC 2007  Johnny Willemsen  <jwillemsen@remedy.nl>
Comment 3 Johnny Willemsen 2007-11-14 09:25:17 CST
Reopen, Adam pointed at that TC within send_request now always fails
Comment 4 Johnny Willemsen 2007-11-27 05:28:51 CST
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)
Comment 5 Johnny Willemsen 2007-11-27 05:29:01 CST
fixed