Bug 4199 - Location forward handling in DSI TAO_DynamicImplementation class incorrect
Summary: Location forward handling in DSI TAO_DynamicImplementation class incorrect
Status: NEW
Alias: None
Product: TAO
Classification: Unclassified
Component: other (show other bugs)
Version: 2.3.1
Hardware: All All
: P3 normal
Assignee: DOC Center Support List (internal)
URL:
Depends on:
Blocks:
 
Reported: 2015-01-27 07:02 CST by Martin Corino
Modified: 2015-01-27 07:02 CST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Martin Corino 2015-01-27 07:02:53 CST
This code:

...
  if (request.response_expected ())
    {
      if (request.is_forwarded ())
        {
          request.init_reply ();
          request.tao_send_reply ();

          // No need to invoke in this case.
          return;
        }
      else if (request.sync_with_server ())
...

at lines 118-128 in TAO_DynamicImplementation::_dispatch() does not take Synchronization Scope settings were no response is expected (for example SYNC_NONE) into account.
In such cases "request.response_expected ()" would return false resulting in never triggering the fowarding check and causing the servant's invoke to be erroneously called.