[jacorb-bugs] [Bug 1012] New: Missed send_request while completing a forward request

bugzilla-daemon at jacorb.org bugzilla-daemon at jacorb.org
Wed Jul 8 19:56:25 CEST 2015


http://www.jacorb.org/bugzilla/show_bug.cgi?id=1012

            Bug ID: 1012
           Summary: Missed send_request while completing a forward request
           Product: JacORB
           Version: 3.6.1
          Hardware: PC
                OS: All
            Status: NEW
          Severity: major
          Priority: P5
         Component: ORB
          Assignee: jacorb-bugs at lists.spline.inf.fu-berlin.de
          Reporter: hroenick at gmail.com

Created attachment 466
  --> http://www.jacorb.org/bugzilla/attachment.cgi?id=466&action=edit
demo that demonstrate the suspicious behaviour

I stumbled in another unexpected behaviour while isolating the problem reported
in Bug 1011 . Instead of making 2 or more calls inside the send_request
interception point, just make 1 more call that is also going to receive an
exception and resolve it through a forward_request. In this case I noticed that
there is an extra send_request call and the previous one apparently is not
completed (does not arrives in server side). 

Let me try to make myself clear with an example:

[client]                                            [server]
    ---- calls A() ---->
    <---- NO_PERMISSION (op = A) ----

    receive_exception:
        do forward_request( op = A )

    ---- calls A() ---->
        ---- send_request( op = A )  ---->
            ---- calls B() ---->
            <---- NO_PERMISSION (op = B) ----

            receive_exception:
                do forward_request( op = B )

            ---- calls B() ---->
            <---- successful reply (op = B) ----
        --- complete the send_request( op = A) --->
    // "apparently this completed send_request does not arrives to the server"
    // why ???

    // an extra call is sent. Why??
    ---- calls A() ---->
    <---- successful reply (op = A) ----

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.spline.inf.fu-berlin.de/pipermail/jacorb-bugs/attachments/20150708/e3ad1cc3/attachment.html>


More information about the jacorb-bugs mailing list