Uploaded image for project: 'Beehive'
  1. Beehive
  2. BEEHIVE-1100

page flow shared by two threads can be destroyed by one but isn't reinitialized by the other

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 1.0, 1.0.1, 1.0.2
    • None
    • NetUI
    • None

    Description

      This is a JPF threading issue where two threads can start off sharing the same Page Flow. When one thread destroys that JPF, the second thread continues to reuse the destroyed instance. This can cause problems when re-running the destroyed JPF because any Controls or other fields cleared in the "onDestroy" lifecycle handler can cause unexpected exceptions / behavior. For example:

      Thread 1: current page flow is /a/A.jpf
      1: reference /a/A.jpf
      2: execute action "step 2"
      5: attempt to execute action "step 3" – strange behavior because
      internal state has been whacked by "destroy".

      Thread 2: current page flow is /a/A.jpf
      3: reference /a/A.jpf
      4: forward to /b/B.jpf – causes onDestroy to be called on A.jpf

      I believe that the fix is to have the Thread1 re-create the JPF mid-request. This means that Thread1 will lose the state /a/A.jpf, but in the current architecture, that makes sense because the JPF was destroyed. When the JPF is re-created, it will attempt to run action "step2" which could work but might also fail with an error or redirect to the beginning of a wizard (for example). Fortunately, this scenario is the same as the case where the user types this into their browser window:

      http://localhost:8080/fooWeb/somewizard/step2.do

      and the action either works or fails. It's just like starting a JPF over again in the middle of the request.

      Attachments

        Activity

          People

            Unassigned Unassigned
            ekoneil Edward O'Neil
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated: